Strings in C | C Language Tutorial
Strings in C | C Language Tutorial
C Language Tutorial Videos | Mr. Srinivas
** For Online Training Registration: ? Call: +91-8179191999
? Visit Our Website for Classroom Training:
? For Online Training:
————————–
? About NareshIT:
"Naresh IT is having 14+ years of experience in software training industry and the best Software Training Institute for online training, classroom training, weekend training, corporate training of Hadoop, Salesforce, AWS, DevOps, Spark, Data Science, Python, Tableau, RPA ,Java, C#.NET, ASP.NET, Oracle, Testing Tools, Silver light, Linq, SQL Server, Selenium, Android, iPhone, C Language, C++, PHP and Digital Marketing in USA,Hyderabad, Chennai and Vijayawada,Bangalore India which provides online training across all the locations
————————–
? Our Online Training Features:
1.Training with Real-Time Experts
2.Industry Specific Scenario’s
3.Flexible Timings
4.Soft Copy of Material
5. Share Videos of each and every session.
————————–
Please write back to us at us.training@nareshit.com/online@nareshit.com or Call us at USA:
+1404-232-9879 or India: +918179191999
** Check The Below Links**
? For Course Reg:
? Subscribe to Our Channel:
? Circle us on G+:
? Like us on Facebook:
? Follow us on Twitter:
? Follow us on Linkedin:
? Follow us on Instagram:
Please Comment, Subscribe and Click Bell??? Icon for More Updates. To learn software course from our experts please register here for online training: https://goo.gl/HIB0wL
Sir can u pls upload the videos in a sequence about c language programs
Could you please upload some programmes rather than only concepts so that it will be more better
What’s the use of strlwr?
When something sparks in my mind, I just feel that Naresh is the number one. Wanna go to India for IT courses.
check ravindrababu ravula lectures ..
Can anyone tell me where is string handling which he mentioned in video
@Sai krishna Rudroju <3
you can feel free to come! here they provide good faculty with less prices ..
@ENG20CS0074 _chetan.r strings part 1
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!
Attention Viewers, this video is the third part of Strings topic. So kindly watch the first two parts of the topic before watching it.
thanks bro
Thanks bro?
thanks man
Thnkzz man
thanks a lot…. i watched the first program 3 times! should have looked at ur comment b4!
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 %sn”,str);
len=stringlength(str);
printf(“length of %s is %d”,str,len);
}
int stringlength(char x[])
{
int i=0,count=0;
while(x[i]!=’