We'll be using Github classroom for homework throughout the term, so this is your chance to get farmiliar with how to access the classroom assignments, clone the repositories, and make commits!
Since you found this link in the Getting Started with Github Classroom tutorial, there are only a few steps left to finish up.
- Clone this repo to your system
- Edit the Hello373.C program to include your name in the print statement
#include <stdio.h>
int main() {
// printf() displays the string inside quotation
printf("<YOUR NAME> says, Hello 373!!!");
return 0;
}
- Commit your changes to the main branch of your repo!
- Push the changes, and check to make sure they show up.
For more information on how to use Github, check out the guide and Github’s Youtube tutorial series!