Advertisement
d3dx939dll

Aula52 - Strings V

Feb 2nd, 2021
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.35 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main(void){
  4.     char nome[20];
  5.     char sobrenome[20];
  6.  
  7.     printf("Insira Seu nome e sobrenome: ");
  8.     scanf("%s%s", &nome, &sobrenome);
  9.  
  10.     printf("%s %s\n", nome, sobrenome);
  11.  
  12.     return 0;
  13. }
  14.  
  15. //Sobre
  16.  
  17. //Aula: Obter String do usuário (#52)
  18. //Data: N/A
  19.  
  20. //Referencia:
  21.  
  22. //Video: https://www.youtube.com/watch?v=NC-dtS2geg8
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement