Skip to content

Instantly share code, notes, and snippets.

@edgardmota
Created August 30, 2016 13:10
Show Gist options
  • Save edgardmota/7108571209a33208cce25a02d6abef57 to your computer and use it in GitHub Desktop.
Save edgardmota/7108571209a33208cce25a02d6abef57 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(void)
{
char nome[21], sobrenome[21];
printf("Primeiro nome: ");
scanf("%s", nome);
printf("Ultimo sobrenome: ");
scanf("%s", sobrenome);
printf("Ola senhor %s, %s!\n", sobrenome, nome);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment