Тёмный

Strings in C Programming | Part-1 | C Language Tutorial 

Naresh i Technologies
Подписаться 1,3 млн
Просмотров 558 тыс.
50% 1

Опубликовано:

 

17 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 341   
@NareshIT
@NareshIT 5 лет назад
Please Comment, Subscribe and Click Bell🔔🔔🔔 Icon for More Updates. To learn software course from our experts please register here for online training: goo.gl/HIB0wL
@pragathibodeddula2707
@pragathibodeddula2707 5 лет назад
Sir I need a program which display sms send and sms received by using functions sir. Please tell me how to write the code. I tried sir but I didn't write that. Please help me sir
@pendekantigouthamraj35
@pendekantigouthamraj35 5 лет назад
sir, please make a video on " printing all permutations of a given string"
@aditisrivastava1806
@aditisrivastava1806 4 года назад
What's the use of strlwr?
@gouravjha2056
@gouravjha2056 4 года назад
Call me on 7775918629,I know how to send SMS I was only getting problem in receiving the sms
@Ramesh13579
@Ramesh13579 4 года назад
Could you please upload some programmes rather than only concepts so that it will be more better
@pallavgoel3860
@pallavgoel3860 5 лет назад
Attention Viewers, this video is the third part of Strings topic. So kindly watch the first two parts of the topic before watching it.
@anirudhasahu5760
@anirudhasahu5760 3 года назад
thanks man
@abhi_alappadamban
@abhi_alappadamban 3 года назад
Thanks bro👍
@poojagundi5779
@poojagundi5779 2 года назад
Thnkzz man
@pra7364
@pra7364 2 года назад
thanks bro
@songanddanceclips2893
@songanddanceclips2893 2 года назад
thanks a lot.... i watched the first program 3 times! should have looked at ur comment b4!
@oanamanaljav
@oanamanaljav 5 лет назад
When something sparks in my mind, I just feel that Naresh is the number one. Wanna go to India for IT courses.
@saikrishnarudroju7343
@saikrishnarudroju7343 5 лет назад
you can feel free to come! here they provide good faculty with less prices ..
@oanamanaljav
@oanamanaljav 5 лет назад
@@saikrishnarudroju7343
@ENGCS_chetanr
@ENGCS_chetanr 3 года назад
Can anyone tell me where is string handling which he mentioned in video
@harshtripathi1291
@harshtripathi1291 3 года назад
check ravindrababu ravula lectures ..
@thaladhoni357
@thaladhoni357 3 года назад
@@ENGCS_chetanr strings part 1
4 года назад
In this lockdown period u r really helpfull in enhancing our programming skills in c language😍😍 GREAT WORK SIR!!!
@ashindc5859
@ashindc5859 4 года назад
hell yeah
@ENGCS_chetanr
@ENGCS_chetanr 3 года назад
Can anyone tell me where is string handling which he mentioned in video plzzzzz
@kumarsaimirthipati8173
@kumarsaimirthipati8173 3 года назад
@@ENGCS_chetanr string part 1&2
@prasanthalajangi7870
@prasanthalajangi7870 3 года назад
@@kumarsaimirthipati8173 thanks bro
@pujaribasvaraj3566
@pujaribasvaraj3566 5 лет назад
Hey Srinivas sir the teachers like you are the reason of why Indians are best in the world !! I was searching for the string functions for so long time i got it from your channel and i understannd it very well thankyou so much for making videos!
@goyaldeekshant
@goyaldeekshant 4 года назад
Here is the complete code of finding length: #include int stringlength(char []); main() { char str[30]; int len; printf("enter the string: "); gets(str); printf("name is %s ",str); len=stringlength(str); printf("length of %s is %d",str,len); } int stringlength(char x[]) { int i=0,count=0; while(x[i]!='\0') { count++; i++; } return count; }
@monikae1721
@monikae1721 5 лет назад
sir, in string reverse program, u said that j=strlen(x). it is wrong, because if we use like this it will give the location of null character, then o/p will be wrong. So we should use j=(strlen (x)-1). Then only it will give the location for the last character of a given string.
@jothishvj17
@jothishvj17 3 года назад
Strlen calculates length of the string excluding null character at the end Ain't it? Edit : I was wrong, u are right
@saurabh_kud
@saurabh_kud 3 года назад
ya without -1 program giving unexpected result
@childgagana4537
@childgagana4537 3 года назад
excatly strlen(x)-1 must be used to get the crt result
@infinix_11
@infinix_11 4 года назад
On program reverse all elements in a string we need to len=strlen(str) -1; Because -- if the string is -- "Hey" len is 3, with NULL being 4; Now every array starts with 0 index. Thus H=0, E=1, Y=2, '\0'=3 now if j=strlen=3, Here 3 is NULL Thus when we reverse it, NULL gets the first location. And we try to print it. It gets terminated in the first index itself. I used GDB to figure out the bug.
@telugucomedy3195
@telugucomedy3195 4 года назад
Yes u r correct...But in Concatenation if we use j=strlen(x)-1.. it's not working..please help with this
@jigarshah9197
@jigarshah9197 4 года назад
but strlen function will exlude null character
@soumyajjaldas4319
@soumyajjaldas4319 4 года назад
Foolish
@ashtube545
@ashtube545 4 года назад
thanks
@xzilyt5547
@xzilyt5547 4 года назад
INSTEAD OF USING j=strlen(str)-1 ,use str[j-1] in while loop because if u want to print len in same program it will print 2 instead 3.
@satyamsrivastava8794
@satyamsrivastava8794 6 лет назад
In example to reverse the string J is holding strlen(x) so for 'NARESH' it would be 6 excluding NULL character. Hence in swapping x[i] needs to be swapped by x[ j-1 ] that x[0] is to be swapped by x[5]. REST IS GREAT
@sayantidey5690
@sayantidey5690 6 лет назад
In the first problem i.e. reversing elements of a string, j should be strlen(x)-1. Otherwise it won't give right output.
@pradeepmishra1905
@pradeepmishra1905 4 года назад
Well observed..!!
@theodordumitrache6055
@theodordumitrache6055 4 года назад
Hei, can you explain me why?
@ankitavaibhav4057
@ankitavaibhav4057 4 года назад
@@theodordumitrache6055 because the index starts from 0 ,which is known thing for us. In case of strlen while finding string length it starts from 1. For ex: if the string is "moon", normally index starts from 0 and length is 3 but if we use strlen then it shows length is 4 and this causes error. so in order to avoid that we should use strlen(x)-1.
@chintakayalaaravind8772
@chintakayalaaravind8772 4 года назад
@@ankitavaibhav4057 thanks for your explanation
@gehadsamir5663
@gehadsamir5663 4 года назад
No, it will work just fine, as strlen counts the elements until it reaches the null character, in which case it will stop counting. It won't include it with the length
@ninnnnnnnnnnnnn
@ninnnnnnnnnnnnn 5 лет назад
At 15:56 it should be j = strlen(x) - 1; Because in string length it will be included '\0' as a last char in a string, so it will be swapped as well, and it will end up on i[0]! Impossible to work like that! And at 25:46 you have to add another set of brackets on those conditions!
@radhasaradhi5959
@radhasaradhi5959 5 лет назад
No need strlen(x)-1..... Already strlen eliminates '\0'
@rishabhkumartiwari9756
@rishabhkumartiwari9756 5 лет назад
@@radhasaradhi5959 program is not running madam
@aksharsolanki328
@aksharsolanki328 4 года назад
@@radhasaradhi5959 No strlen does swap '\0' in the string to the 1st position, which means it terminates the whole string. Therefore j = strlen( str ) - 1 ;
@sakthinivasan2678
@sakthinivasan2678 4 года назад
We need to use j=strlen(str)-1;
@venkateshdammala7
@venkateshdammala7 4 года назад
Yes
@koteswararaogalam8803
@koteswararaogalam8803 4 года назад
U r correct broo
@raana2429
@raana2429 4 года назад
TQ bro
@aishwarya1895
@aishwarya1895 4 года назад
U 'r absolutely correct... I was in the same dilemma😆
@soumyapriyadarshidas8345
@soumyapriyadarshidas8345 4 года назад
yes bro
@KP-md2ef
@KP-md2ef 2 года назад
Really, you are great sir . Your teaching technique is very unique. Now, I can easily understand Array, string ......thank you so much ... It is very helpful for me as well as for other students also . Those who are facing problems in C programming language... Once again thank you sir.🥰☺️☺️☺️🙏🙏🙏🙏🙏🙏
@shafiullahraihan2524
@shafiullahraihan2524 4 года назад
I love this channel.It helps me to get a strong basic in c programming.Thanks for all these video that you upload for C programming.
@zameershaikh4324
@zameershaikh4324 5 лет назад
Guyzz you may have the doubt in string reverse process then here it is the code... #include #include void main() { char str[100],temp; int i,j=0; printf("nEnter the string :"); gets(str); i=0; j=strlen(str)-1; while(i='A'&&x[i]
@radhikadaliya1517
@radhikadaliya1517 3 года назад
Thanks for the correction
@zameershaikh4324
@zameershaikh4324 3 года назад
Welcome
@gunikakaur7100
@gunikakaur7100 4 года назад
I cannot tell you how grateful I m... Thank you for teaching these topics so so so nicely! I don't know what I would have done if your videos weren't there.... Just so you know... Your videos are the best out there for c.. #Thank you...
@tinku4768
@tinku4768 4 года назад
Ok
@DeFacto94
@DeFacto94 4 года назад
This guy is best programming teacher I ever saw, love him!
@ENGCS_chetanr
@ENGCS_chetanr 3 года назад
Can anyone tell me where is string handling which he mentioned in video
@shahriarniloy1945
@shahriarniloy1945 Год назад
@@ENGCS_chetanr this is the third video of the string series alothough it says string-1. string-2 is 1st one, and string-3 is 2nd
@goyaldeekshant
@goyaldeekshant 4 года назад
Here is the complete code of reversing the string: #include int strlength(char[]); main() { int len; char x[30]; printf("enter the string: "); gets(x); printf(" string is %s",x); len = strlength(x); printf(" length of string is %d",len); printf(" now the swapping starts "); int i=0, j=strlength(x)-1; char c; while(i
@sailajadevipinisetti3503
@sailajadevipinisetti3503 3 года назад
Super
@hitleryt45
@hitleryt45 3 года назад
We can just use for loop in decrement na🧐
@SaiKiran-tm5pp
@SaiKiran-tm5pp 3 года назад
int i=0, j=strlength(x)-1; can you please tell
@sudharanigadde1523
@sudharanigadde1523 5 лет назад
Your teaching style is amazing sir.. Everyone can understand...
@30Phani
@30Phani 7 лет назад
At 25:50 x[i]
@sivasairakeshgontla2409
@sivasairakeshgontla2409 6 лет назад
True bro
@sing759
@sing759 6 лет назад
yes that is correct
@pramodcharan8342
@pramodcharan8342 5 лет назад
No matter bro
@byrrajuabhilashraju1822
@byrrajuabhilashraju1822 5 лет назад
Ha yes
@riturajgautam8806
@riturajgautam8806 4 года назад
Yas
@yrzwisdom
@yrzwisdom 3 года назад
At 25.40 (time), The expression is x[i]=x["%d",i]+32 or a[i]=("%d",a[i])+32; because the character can't be added to an integer.Take care of this brothers and sisters otherwise the console will print an error message.
@vysaghthambi1624
@vysaghthambi1624 4 года назад
In reversing we have to put X(j-1). Because j has the length of the string. It's 6 for the first case. So we have to take j- 1. No???
@ranjimaramadas690
@ranjimaramadas690 4 года назад
While swapping 2 string we are assigned j as strlen(x), but in string Naresh it comes 6 and in Annie it comes 5. But sir, you take it as 5 and 4? Then how we can take j=strlen(x) ?
@aryanjain9596
@aryanjain9596 2 года назад
its wrong we should take: j=strlen(x) j=j-1
@prateek5463
@prateek5463 2 года назад
Yes, it's wrong, we should take j=strlen(x)-1
@rosesoulyt3635
@rosesoulyt3635 4 года назад
This is the best RU-vid channel to learn C , here we can learn from basic to advanced level with deeply knowledge. Thanks sir,🙏
@gudduprasadjaisawal5859
@gudduprasadjaisawal5859 3 года назад
You can try this for merging two strings: #include #include void main() { char s1[30],s2[30]; int i,len1,len2; printf("Enter first string :"); gets(s1); printf("Enter second string :"); gets(s2); len1=strlen(s1); len2=strlen(s2); printf(" Length of first string '%s' is :%d ",s1,len1); printf(" Length of second string '%s' is %d ",s2,len2); for(i=0;i
@sejalsinha9756
@sejalsinha9756 6 лет назад
in reversing, it should be j =strlen(str)-1
@user-uz8od7ir3b
@user-uz8od7ir3b 5 лет назад
Can u give me ur fb acc or wp number to explain to me something ?
@gokulnathj4785
@gokulnathj4785 5 лет назад
There is a j-- iterator after i++
@abhishekkumargautam4018
@abhishekkumargautam4018 5 лет назад
yes bro
@radhasaradhi5959
@radhasaradhi5959 5 лет назад
No need ... already strlen eliminates null space
@just_relax3110
@just_relax3110 5 лет назад
@@radhasaradhi5959 your program is not going to run if you don't use j=strlen(str)-1
@garimajain474
@garimajain474 2 года назад
No words to gratitude you When no one is there to understand our doubt then it you ,you understand us and solve it
@brighteducationpallaviraut3675
You are so amazing your teaching is best I understand very well
@shreyashgupta3511
@shreyashgupta3511 3 года назад
In swapping of character of strings problem...it should be x[i]=x[j-1] Since j value will be 1 greater than last index of the string..
@ahmedtazeem8130
@ahmedtazeem8130 3 года назад
15.52 ... j= strlen(x) will give location of null character ... Instead use j = (strlen(x)-1).
@poojarineeraj8164
@poojarineeraj8164 7 лет назад
is there some more topics in c- language pls make it sir we have no option to go to other places to learn.thankyou sir
@vishwanimrunali
@vishwanimrunali 3 года назад
Check Neso academy videos also ...for more examples .....
@Deepakfly
@Deepakfly 2 года назад
The future of programming on youtube. Thanks a lot sir. For providing this course.
@pendekantigouthamraj35
@pendekantigouthamraj35 5 лет назад
sir please make a video on "printing all permutations of a given string".
@gbn7491
@gbn7491 2 года назад
Sir thanks for your valuable words but I'm having small doubt at 25:53 seconds part in if condition we used && it means it should satisfy both conditions but it is not always possible as any letter is not =Z. So can we use 1)|| or symbol in it or 2)(x[i]>='A' && x[i]
@faresrabie3145
@faresrabie3145 2 года назад
|| will make the condition true for any ASCCI > 'A' i think your second solution satisfy the example
@praveenthallapally5042
@praveenthallapally5042 6 лет назад
hii sir in the program of reverse of a string the condition should be j=strlen(x)-1.bacause it is an array magnitude of i and j should be equal. #clear explanation.
@soumallyamondal2166
@soumallyamondal2166 6 лет назад
right bro
@user-uz8od7ir3b
@user-uz8od7ir3b 5 лет назад
Can u give me ur fb acc or wp number to explain to me something ?
@tushar3575
@tushar3575 4 года назад
Sir in swapping of odd length of string j!=strlrn(string)
@kanchanasiddhe5864
@kanchanasiddhe5864 6 лет назад
Excellent teaching sir
@rojalinbehera7329
@rojalinbehera7329 3 года назад
Wow sir! You just simply makes us understand every complex thing @Naresh i Technologies
@sravanirikka6091
@sravanirikka6091 4 года назад
sir i'm happy with your reverse logic but please tell me how to print the string after reversing it???
@ENGCS_chetanr
@ENGCS_chetanr 3 года назад
Can anyone tell me where is string handling which he mentioned in video
@Andrew_EvsW
@Andrew_EvsW 6 лет назад
Hello Sir, please add String - Part 3 to title , thank you.
@something_different8968
@something_different8968 3 года назад
great teaching ..every program has a best tutor in youtube.. for C its undisputedly you sir
@kindaeasy9797
@kindaeasy9797 4 года назад
You can even try this //Enter both the strings Len=strlen(x); len2=strlen(y); for(int i=Len,int j=0;j
@goosebumpslol7049
@goosebumpslol7049 3 года назад
Sir u r the best teacher I ever seen love from karnataka 🙏🏻
@vikraammaarkiv8947
@vikraammaarkiv8947 5 лет назад
Thalaiva u r great 🙏🙏🙏🙏🙏🙏🙏🙏🙏
@anuragyadav_8572
@anuragyadav_8572 4 года назад
Thanks for saving my exam it's due in 3 hours 24 minutes 😜
@ronnysingh9503
@ronnysingh9503 3 года назад
Siiiirrrrr your logic is pure magic....very easy and understandable.....😁....thank you so much....🤗
@mnbvcxz1621
@mnbvcxz1621 7 лет назад
sir with out the [return count;] i am able to return the value.Is is compulsory to type [return] function
@VinayagaMotorsTsy
@VinayagaMotorsTsy 3 года назад
Without return you will be gongor pass by reference.
@boothilaxmi9304
@boothilaxmi9304 3 года назад
Sir you are simply awesome.... from the very first video I am watching all videos and it's very helpful
@manishjha6570
@manishjha6570 5 лет назад
Thank you sir, Your videos help me alot,Your explanation is also good. Thank you very much sir...
@Muthukumar232K
@Muthukumar232K 5 лет назад
jii how to store after the given string will reversed
@vaishalipurkayastha7219
@vaishalipurkayastha7219 5 лет назад
Can't thank you more ....Superb explanation
@kurchak
@kurchak 3 года назад
These are excellent, thank you so much for doing these videos! You're English is very easy to understand as well.
@venkatbv
@venkatbv Год назад
#include #include int main() { char a[100]; scanf("%s",a); for(int i=0;i=65 && a[i]
@gouravjha2056
@gouravjha2056 4 года назад
You are a wonderful teacher##i got inspiration while watching your topic ##thank you to guide me
@lancecruiselakra
@lancecruiselakra 8 лет назад
Sir, i want to compare two strings..is it possible to compare two string values? As we know during reading of strings it will hold the address of that string rather than the value within that address.. Reply as soon as possible Sir !!
@snehitvaddi
@snehitvaddi 7 лет назад
In this strings handling there is lot confusion whether where to include NULL CHARACTER or not...if possible make a vedio sir...
@softwarefoodiee
@softwarefoodiee 4 года назад
Yes
@Justdoing185
@Justdoing185 3 года назад
Congratulations for 8k subscriber Naresh sir
@vandana6813
@vandana6813 6 лет назад
Srinivas sir your teaching is very well tnqqq..... Soo.... Much Sir
@Music_with_Raj
@Music_with_Raj 2 года назад
Sir thx for teaching aexilaent amazing teaching 🙏🙏🙏❤️❤️
@moviesmania253
@moviesmania253 2 года назад
bset explanation,, sir,, love from bangladesh
@rkrrkumar511
@rkrrkumar511 6 лет назад
The C11 standard ISO/IEC 9899:2011 eliminated gets() as a standard function, which is A Good Thing™. Sadly, it will remain in libraries for many years (meaning 'decades') for reasons of backwards compatibility.
@krishnachaitanya5050
@krishnachaitanya5050 4 года назад
nice and useful lecture sir
@aaravacts1481
@aaravacts1481 4 года назад
Thank you very much sir ji for all your videos. Please keep it up. God ji may and will always bless you
@kshitizmishra2295
@kshitizmishra2295 4 года назад
Sir can you make a video on Q) how to remove all the duplicate character in a string.....
@bestsoundssystems3312
@bestsoundssystems3312 4 года назад
No
@karanvedi6779
@karanvedi6779 2 года назад
Sir very great concepts very helpful...🙏🙏🙏🙏
@abhijitpanigrahi2092
@abhijitpanigrahi2092 5 лет назад
I think j=strlen(x)-1 will be correct to use.
@neha0376
@neha0376 5 лет назад
Yes
@BikashKumar-on2io
@BikashKumar-on2io 4 года назад
The string length program is wrong please let us know
@saisarathchandra45
@saisarathchandra45 2 года назад
Thank u sir for giving good explanation. It's really interesting to learn the C language 😇😊
@husainsariya4060
@husainsariya4060 4 года назад
in swapping the character program what data type should be given to variable temp. Also what happens when multiple word string in read into the program.
@naganikhitha7421
@naganikhitha7421 3 года назад
Nice explanation sir. It is so helpful for us. Thank you.
@songlover9437
@songlover9437 5 лет назад
Hats off to you sir...u r such a genius u explain so neatly with calm and patience .I feel so lucky to have access to ur videos
@sulochanamirage1605
@sulochanamirage1605 3 года назад
Sir you're teaching way is excellent but please provide proper order of playlists it's humble request
@mabiormayiol-ey7yb
@mabiormayiol-ey7yb 6 месяцев назад
The best ever find❤❤
@suriyasanjay5547
@suriyasanjay5547 3 года назад
we can use also strcpy (string copy)
@deepanraj9795
@deepanraj9795 3 года назад
I order to use that you need to use string header file this video is with out using string header file
@amareshh7691
@amareshh7691 4 года назад
Your teaching is amazing sir 🔥tq for making video for c language
@clowngaming4288
@clowngaming4288 4 года назад
I want more examples for all things in cprograms for my semister exams
@ankitkumarojha7510
@ankitkumarojha7510 2 года назад
thnk u sir..you put in such a honest effort..incredible sir..little bow from me sir
@kuldeepsharma7499
@kuldeepsharma7499 4 года назад
You should never use gets function because it doesn't give error if you enter the string larger than 40 chars it will overwrite the next element in the memory with string.
@somputhea6709
@somputhea6709 4 года назад
Thank you sir for clear explanation
@rajibnaskar1429
@rajibnaskar1429 6 лет назад
Love u sir. U r the best teacher of c language
@user-uz8od7ir3b
@user-uz8od7ir3b 5 лет назад
Can u give me ur fb acc or wp number to explain to me something ?
@balkrushnabhojgude8280
@balkrushnabhojgude8280 4 года назад
really , sir ur teaching is great
@gorrepatimadhu6025
@gorrepatimadhu6025 4 года назад
My c language guru...👍👍👍🙇🙅
@saikiran-ho7hv
@saikiran-ho7hv 3 года назад
Tq very much sir
@success_hub93
@success_hub93 4 года назад
Perfect explanation ever seen
@annejeroldin6591
@annejeroldin6591 7 лет назад
sir I need a full c program for reverse a word without using library function
@vikastiwari10
@vikastiwari10 7 лет назад
Anne Jeroldin me too also
@ghostrobo5847
@ghostrobo5847 6 лет назад
@Timothy lol I feel you bro xD
@stashatstake
@stashatstake 5 лет назад
@Timothy i think he means he wants the code to be spoon-fed. Rather than writing it himself.
@banothsuresh4481
@banothsuresh4481 3 года назад
Superb sir ,thank you.
@hemanthkumarchowdariduvvad3697
@hemanthkumarchowdariduvvad3697 3 года назад
super sar very excelent nice class
@keshavchopra6588
@keshavchopra6588 5 лет назад
U r a true master
@vinayakpradhan5836
@vinayakpradhan5836 3 года назад
Great explaination sir...... can you please make for C++ tutorials?
@heena_31
@heena_31 4 года назад
thanku sir..love your videos
@swatiprabhu9191
@swatiprabhu9191 4 года назад
excellent video. tysm for all the videos
@akshaykumarpardhi5399
@akshaykumarpardhi5399 5 лет назад
In string reverse code j = strlen(x) - 1;
@derek2554
@derek2554 3 года назад
sir i think there is some sort of mistake at 16:06 in strlen counting
@chaithraramachandra6508
@chaithraramachandra6508 6 лет назад
Very good teaching..thank u
@paneerselvam3682
@paneerselvam3682 5 лет назад
Sir... how to search a given word in a sentence and replace with another word given? Can u pls give the logic?
@deveshzope8555
@deveshzope8555 3 года назад
use if .....in operator and get index of your word from string
@tapanjeetroy8266
@tapanjeetroy8266 6 лет назад
thanks a lot sir...you are great
@TanzidTushar
@TanzidTushar 3 года назад
This video goes after string part 1 and string part 2 in the playlist! so I think it's better if you watch according to that order if you are just a novice learner!!! Thank me later :P
@maheshnagisetti8342
@maheshnagisetti8342 7 лет назад
sir i have one doubt using string header for string concate directly we can use for strcat(s1,s2);
@vikraammaarkiv8947
@vikraammaarkiv8947 5 лет назад
They might ask a program without using library function so u have to do this
@sonalidubey2913
@sonalidubey2913 2 года назад
Sir strlen(x) will store 6 instead of 5 for naresh right? so shouldnt we use j-1 as the index for the last value.
@saradasarada8302
@saradasarada8302 3 года назад
Sir if u explain advanced topics it will be more useful sir than basic concepts
@something_different8968
@something_different8968 3 года назад
Thank u
Далее
Strings in C Programming | Part-2 | C Language Tutorial
21:20
C Array - Part 1 | C Language Tutorial
17:33
Просмотров 1,4 млн
⚡ #RodrygoGoes ✖️ #Mbappé ⚽ #UCL
00:11
Просмотров 401 тыс.
Strings in C Programming | Part-3 | C Language Tutorial
14:45
Recursion in C Functions | C Language Tutorial
14:33
Просмотров 827 тыс.
C Strings in 20 Minutes | C and C++
20:56
Просмотров 6 тыс.
Structures in C | C Language Tutorial
25:44
Просмотров 946 тыс.
C_114 Unions in C | C Language Tutorials
17:19
Просмотров 163 тыс.
⚡ #RodrygoGoes ✖️ #Mbappé ⚽ #UCL
00:11
Просмотров 401 тыс.