Created
March 18, 2024 23:46
-
-
Save jmichalenko/fd5e6a243d9d3d0e7dec791a6067ffee to your computer and use it in GitHub Desktop.
CS50 Labs starter code
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 <cs50.h> | |
#include <stdio.h> | |
#include <string.h> | |
int main(void) | |
{ | |
string name = get_string("Enter your name: "); | |
// write a for loop to iterate through name and print each char on it's own line | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment