fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char input[50];
  5. char test[50];
  6.  
  7. int ret;
  8.  
  9. printf("Enter word or phrase to compare ");
  10. fgets(input,sizeof(input),stdin);
  11. strcpy(test,input);
  12.  
  13. ret = strcmp(test,input);
  14.  
  15. if(ret == 0)
  16. printf("\n this is a palindrome ");
  17.  
  18. else
  19. printf("\n this is not a palindrome");
  20. }
  21.  
Success #stdin #stdout 0s 2172KB
stdin
hello world!
stdout
Enter word or phrase to compare 
 this is a palindrome