reverse string C code example
Example 1: reverse string efficient in cpp without using function
#include <iostream>
using namespace std;
int main()
{
char str[] = "Reverseme";
char reverse[50];
int i=-1;
int j=0;
while(str[++i]!='\0');
while(i>=0)
reverse[j++]=str[--i];
reverse[j]='\0';
cout<<"Reverse of a string is"<< reverse;
return 0;
}
Example 2: reverse string in python
'hello world'[::-1]
'dlrow olleh'
Example 3: code to reverse a string
#include <stdio.h>
#include <string.h>
int main()
{
char s[100];
printf("Enter a string to reverse\n");
gets(s);
strrev(s);
printf("Reverse of the string: %s\n", s);
return 0;
}
Example 4: read string c
char name[20];
scanf("%s", name);