Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. // ex4
  2.  
  3. #include <iostream>
  4. main()
  5. {
  6. char nome[10];
  7. printf("digite o seu nome: ");
  8. scanf ("%s",&nome);
  9. system("cls");
  10. printf("o nome digitado foi: %s",nome);
  11. system("pause>>null");
  12. return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement