Created
July 16, 2020 14:58
-
-
Save aryan348/b4ecfb62b8b3f634a24a3a4e2d8ddcea to your computer and use it in GitHub Desktop.
CS50 Problem Set 1 (Fall 2020) - Hello
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 <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