Skip to content

Instantly share code, notes, and snippets.

@jmichalenko
Created March 18, 2024 23:59
Show Gist options
  • Save jmichalenko/43aaf96c5a6185b647817f5b555dfe2f to your computer and use it in GitHub Desktop.
Save jmichalenko/43aaf96c5a6185b647817f5b555dfe2f to your computer and use it in GitHub Desktop.
CS50 Labs starter code
#include<stdio.h>
#include<cs50.h>
int main (void)
{
//To Do: Write a function to prompt the user for numberA and numberB
//To Do: Write a function to return the product of numberA and numberB. "The product of the number is: "
//After you are able to write the function and compile the program, make a header file and move the function protopye and definition here
//Add the include statement at the top of the file
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment