nikolas_serafini

Lista 4 - Exercício 16

Jun 22nd, 2013
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.13 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5.     char name[40];
  6.  
  7.     printf("Entre com o seu nome :\n");
  8.     gets(name);
  9.     puts(name);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment