Skip to content

Instantly share code, notes, and snippets.

@ThatOneCubanDude
Created March 26, 2020 22:43
Show Gist options
  • Save ThatOneCubanDude/f91fc64d6eb43e3daa1937d9e4735491 to your computer and use it in GitHub Desktop.
Save ThatOneCubanDude/f91fc64d6eb43e3daa1937d9e4735491 to your computer and use it in GitHub Desktop.
My solution to CS50x Problem Set 1 - Hello. Feel free to critique.
#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