Created
September 20, 2016 12:48
-
-
Save x1unix/b083945d0df06637174ccf2789726b1b to your computer and use it in GitHub Desktop.
Hello World C
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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