Skip to content

Instantly share code, notes, and snippets.

@aryan348
Created July 16, 2020 14:58
Show Gist options
  • Select an option

  • Save aryan348/b4ecfb62b8b3f634a24a3a4e2d8ddcea to your computer and use it in GitHub Desktop.

Select an option

Save aryan348/b4ecfb62b8b3f634a24a3a4e2d8ddcea to your computer and use it in GitHub Desktop.
CS50 Problem Set 1 (Fall 2020) - Hello
#include <stdio.h>
#include <cs50.h>
int main (void)
{
string name = get_string("Whats your name\n");
printf ("Hello, %s\n", name);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment