🔴 Class 70: inbuilt string functions in C language

Опубликовано: 01 Март 2026
на канале: Eagles Tech with AI
186
8

#include stdio.h
int main()
{
char str[25];
printf(" Input a string : ");
gets(str);
int l=strlen(str);
printf("String Length is : %d ", l);
printf("\nUpper Case %s",strupr(str));
printf("\nLower Case %s",strlwr(str));
printf("\nReverse %s",strrev(str));
}

🔴 Class 70: inbuilt string functions in C language
🔴 Daily Reel Upload
🔴 Follow to Learn C - Your first step to Programming

Connect with us on Instagram for daily short videos where we help students like you with my programming knowledge so that they can finally grow and scale future in Software, Website & Mobile application development.

#clanguage #clanguageprogramming #cprogramming #cprogramminglanguage