FranciscoSoccol

Lista 10 - Exercicio 02

Sep 2nd, 2013
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.16 KB | None | 0 0
  1. #include<stdio.h>
  2.  
  3. int main()
  4. {
  5.     int i;
  6.     while((i=getchar())!=EOF)
  7.         if(i!=' '&&i!='\n'&&i!='\t')
  8.             putchar(i);
  9.     return 0;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment