Skip to content

Instantly share code, notes, and snippets.

@ThePratikSah
Created July 25, 2017 19:00
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/e9aef03622a33bab85a63acf76211281 to your computer and use it in GitHub Desktop.
Save ThePratikSah/e9aef03622a33bab85a63acf76211281 to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <string.h>
int main(){
char name[25];
printf("Enter your full name: ");
gets(name);
puts(name);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment