Skip to content

Instantly share code, notes, and snippets.

@ThePratikSah
Created July 25, 2017 19:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ThePratikSah/33a7954d0aa167912d7667236bae8e20 to your computer and use it in GitHub Desktop.
Save ThePratikSah/33a7954d0aa167912d7667236bae8e20 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(){
char name[20];
printf("Enter your full name: ");
scanf("%[^\n]s", name);
printf("Your name is %s.", name);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment