Skip to content

Instantly share code, notes, and snippets.

@jmichalenko
Created March 18, 2024 23:46
Show Gist options
  • Save jmichalenko/fd5e6a243d9d3d0e7dec791a6067ffee to your computer and use it in GitHub Desktop.
Save jmichalenko/fd5e6a243d9d3d0e7dec791a6067ffee to your computer and use it in GitHub Desktop.
CS50 Labs starter code
#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