vojta
0
Q:

strrev in c

#include<stdio.h>
#include<string.h>
 
int main()
{
   char name[30] = "Hello";
 
   printf("String before strrev( ) : %s\n",name);
 
   printf("String after strrev( )  : %s",strrev(name));
 
   return 0;
}
2

New to Communities?

Join the community