Created
March 18, 2024 23:48
-
-
Save jmichalenko/acc1fb0f923ac41801f9108c0c16a483 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