C Program to Print a string in reverse order#shorts | c programming

preview_player
Показать описание
C Program to Print a string in reverse order#shorts | c programming
C Program to Print a string in reverse order

**My YouTube Channel::::::::

**My Instagram Account:::::::

**Your Queries::::::::::::

c programming for beginners
c language
c programming language
c programming tutorial
learn c programming
c language tutorial for beginners
Coding guidelines tamil
C fun experiment
C complete tutorial
C interview questions
Python
Java
Print name in reverse order in c
Loop in c
Switch case in c
If else
yt shorts
Shorts
Strrev function
reverse a string
Reverse string using strrev function

**Hashtag:::::::
#c
#clanguage
#code
#coding
#viral
#viralshorts
#shortsvideo
#viralvideo
#shorts
#clanguage
#string
#cprogramminglanguagebeginners
#cprogramming
#viralshort
#strrev
Рекомендации по теме
Комментарии
Автор

Ye code comment Kiya h dekhlo koi error h to

RAYZEDITING
Автор

#include<stdio.h>
#include<string.h>
Int main()
{
char str[20];
printf("\n enter");
gets(str);
printf("string is:%s", str);
Printf("\n reverse string is :%s", strrev(str));
return 0;
}

RAYZEDITING