Search
 
SCRIPT & CODE EXAMPLE
 

C

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;
}
Comment

PREVIOUS NEXT
Code Example
C :: list fiter octobercms 
C :: send array through a pipe 
C :: (avar == 1) ? (bvar == 2 ? result = 3 : (result = 5);) : (result = 0); 
C :: Convert arduino String to C language String 
C :: c ausgabe von variablen 
C :: variadic macros in c 
C :: add last in list c 
C :: mettre int dans string c % 
C :: copy a number of characters to another string in c without standard library 
C :: maximum, minimum, mean, and median of the data set. in array c programming 
C :: Laravel installation on Linux 
C :: levenshtein c 
C :: how to turn off bash 
C :: C (Windows) 
C :: c addition 
C :: ctest run specific test 
C :: C do...while loop 
C :: c make list 
C :: c triangle check if triangle is 90 degrees 
Dart :: flutter validate email 
Dart :: flutter keyboard overflow when opens 
Dart :: how to get whatsapp groups in app flutter programmatically 
Dart :: color of status bar flutter 
Dart :: dart repeat function 
Dart :: get random color in flutter 
Dart :: dart inset all 
Dart :: MaterialStateProperty<Color? flutter 
Dart :: how to add onpressed to a text flutter 
Dart :: flutter delay a function 
Dart :: create a validator in flutter 
ADD CONTENT
Topic
Content
Source link
Name
2+3 =