Skip to content

Instantly share code, notes, and snippets.

@danielbonifacio
Created July 21, 2017 15:24
Show Gist options
  • Save danielbonifacio/5a0c6caf03b63c2d0dfa23fb986bcc88 to your computer and use it in GitHub Desktop.
Save danielbonifacio/5a0c6caf03b63c2d0dfa23fb986bcc88 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main (void) {
char nome[6];
printf("Ola! Insira seu nome, por fovor: \n");
scanf("%s", nome);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment