Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main(void){
- char nome[20];
- char sobrenome[20];
- printf("Insira Seu nome e sobrenome: ");
- scanf("%s%s", &nome, &sobrenome);
- printf("%s %s\n", nome, sobrenome);
- return 0;
- }
- //Sobre
- //Aula: Obter String do usuário (#52)
- //Data: N/A
- //Referencia:
- //Video: https://www.youtube.com/watch?v=NC-dtS2geg8
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement