Advertisement
lucontre

ALP practico 5 problema 5

May 31st, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.22 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int main()
  4. {
  5.     char str[20]="pico pal que lee";
  6.     printf("%s\n",str);
  7.     for(int i=0;str[i]!='\0';i++){
  8.         printf("%c\n",str[i]);
  9.  
  10.     }
  11.  
  12.  
  13. return 0;
  14. }// fin main
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement