Answers for "Algorithm that flips sentences and numbers"

C
0

Algorithm that flips sentences and numbers

#include <stdio.h>
#include<string.h>
int main(void) {
  int n,m,j;
  char i,t[n],d[n];
printf("enter the first word :");
gets(t);
n=strlen(t);
   for(j=n-1;j>=0;j--){
   printf("%c",t[j]);
   }
  return 0;
}
Posted by: Guest on July-17-2021

Code answers related to "Algorithm that flips sentences and numbers"

Code answers related to "C"

Browse Popular Code Answers by Language