diogoAlves

IFF/Introdução à Programação/Slide/Pag 43/Ex 4

Feb 24th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.40 KB | None | 0 0
  1. //IFF - Introdução à Programação
  2. //Slide - Página 43 - Exercício 4
  3. #include<stdio.h>
  4. #include<locale.h>
  5. #include<string.h>
  6.  
  7. int main(){
  8.     setlocale(LC_ALL,"Portuguese");
  9.     char nome[15], sobrenome[30];
  10.     printf("Entre com seu nome: ");
  11.     gets(nome);
  12.     strcat(nome," ");
  13.     printf("Entre com seu sobrenome: ");
  14.     gets(sobrenome);
  15.     printf("Nome completo: %s.", strcat(nome,sobrenome));
  16.     return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment