Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //IFF - Introdução à Programação
- //Slide - Página 43 - Exercício 4
- #include<stdio.h>
- #include<locale.h>
- #include<string.h>
- int main(){
- setlocale(LC_ALL,"Portuguese");
- char nome[15], sobrenome[30];
- printf("Entre com seu nome: ");
- gets(nome);
- strcat(nome," ");
- printf("Entre com seu sobrenome: ");
- gets(sobrenome);
- printf("Nome completo: %s.", strcat(nome,sobrenome));
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment