Advertisement
Xioth

C - TP1 - georgesPerec.c

Jan 17th, 2016
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.24 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main()
  5. {
  6.     char userInput[256];
  7.     int i = 0;
  8.  
  9.     fgets(userInput, 255, stdin);
  10.  
  11.     while(userInput[i] != '\0')
  12.     {
  13.         if(userInput[i] != 'e')
  14.             printf("%c", userInput[i]);
  15.  
  16.         i++;
  17.     }
  18.     return 0;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement