Created
March 26, 2020 22:43
-
-
Save ThatOneCubanDude/f91fc64d6eb43e3daa1937d9e4735491 to your computer and use it in GitHub Desktop.
My solution to CS50x Problem Set 1 - Hello. Feel free to critique.
This file contains 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 <cs50.h> | |
int main(void) | |
{ | |
printf("hello, %s\n", get_string("What is your name?\n")); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment