Due: Friday 09/17 10:00am

Step 0:

  • Get your home computer setup to compile and run C programs
  • See notes for potentially helpful C notes.
  • To work on a Windows computer, it is highly suggested that you install WSL
    • Follow the instructions to install WSL version 1 and then upgrade to WSL 2.
  • To work on a Mac computer
    • Install Xcode from the App Store
    • Run the following in a terminal in install xcode command line tools: $ xcode-select --install
  • Example basic C program below:
#include <stdio.h>

int main() {

  printf("Good News Everyone!");

  return 0;
}