nikolas_serafini

Lista 4 - Exercício 31

Jun 25th, 2013
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.25 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main()
  5. {
  6.     int i;
  7.     char name[50];
  8.  
  9.     printf("Entre com o seu nome:\n");
  10.     gets(name);
  11.     for (i = 0; i < strlen(name); i++)
  12.     {
  13.         printf("%c\n",name[i]);
  14.     }
  15.  
  16.     return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment