Computer Science, asked by pkbharti845, 20 hours ago

a program to write MATHEMATICS in reverse​

Answers

Answered by chawanprakash24
0

#include <stdio.h>  

#include <string.h>  

int main()  

{  

   char str[40]; // declare the size of character string  

   printf (" \n Enter a string to be reversed: ");  

   scanf ("%s", str);  

     

   // use strrev() function to reverse a string  

   printf (" \n After the reverse of a string: %s ", strrev(str));  

   return 0;  

}  

// C will be sharp for this

Similar questions