Horje
Algorithm that flips sentences and numbers Code Example
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;
}




C

Related
c program to find minimum of 5 numbers using conditional operator in c Code Example c program to find minimum of 5 numbers using conditional operator in c Code Example
PDO Crud Code Example PDO Crud Code Example
esp32 dhcp server Code Example esp32 dhcp server Code Example
google sheets transpose new line to table Code Example google sheets transpose new line to table Code Example
My name is c Code Example My name is c Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8