Skip to content

Instantly share code, notes, and snippets.

@ajess33
Created October 26, 2017 01:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ajess33/d9efa64a268fe1ed92391c6ff9278588 to your computer and use it in GitHub Desktop.
Save ajess33/d9efa64a268fe1ed92391c6ff9278588 to your computer and use it in GitHub Desktop.
#include <cs50.h>
#include <stdio.h>
#include <string.h>
#include <ctype.h>
int main(void)
{
// prompt user for name
printf("What is your name? ");
string s = get_string();
if (s != NULL)
{
for (int i = 0; i < strlen[s]; i++)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment