Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <string.h>
- #include <stdlib.h>
- #include <stdio.h>
- #define TRUE 1
- #define VRAI 1
- int main(int argc, char **argv)
- {
- char nome[51], sobrenome[51];
- int i=0;
- int j=0;
- printf("digite seu nome:\n");
- while(TRUE)
- {
- nome[i] = getchar();
- if(nome[i] == '\n')
- {
- nome[i] = 0;
- break;
- }
- i++;
- }
- printf("digite seu sobrenome:\n");
- while(VRAI)
- {
- sobrenome[j]=getchar();
- if(sobrenome[j] == '\n')
- {
- sobrenome[j] = 0;
- break;
- }
- j++;
- }
- strcat(nome," ");
- strcat(nome,sobrenome);
- printf("Ola %s !\n", nome);
- return 0;
- }
Add Comment
Please, Sign In to add comment