nikolas_serafini

Lista 10 - Exercício 2

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