Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Solicite o nome do usuário, em seguida exiba-o na console.
- #include<stdio.h>
- int main()
- {
- char nome[50];
- printf("Digite o nome: ");
- gets(nome);
- printf("\n%s", nome);//exibe o nome
- getch();
- }
Advertisement
Add Comment
Please, Sign In to add comment