Skip to content

Instantly share code, notes, and snippets.

@x1unix
Created September 20, 2016 12:48
Show Gist options
  • Save x1unix/b083945d0df06637174ccf2789726b1b to your computer and use it in GitHub Desktop.
Save x1unix/b083945d0df06637174ccf2789726b1b to your computer and use it in GitHub Desktop.
Hello World C
#include <stdio.h>
#include <stdlib.h>
int main() {
char name[128];
printf("Your name: ");
scanf("%s", &name);
printf("Hello %s", name);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment