Created
March 18, 2024 23:59
-
-
Save jmichalenko/43aaf96c5a6185b647817f5b555dfe2f 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<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