Here is the code we wrote today:

#include <stdio.h>

int printStuff(int x) {
  printf("This is the stuff that you asked to print: %d\n", x);

  return 5;
}

int main() {
  printf("Hello World!\n");

  printf("Print some numbers: ");
  for(int i=0; i < 100; i++)
    printf("%i ", i);
  printf("\n");

  char c = 'A';
  printf("%c\n", c);

  printf("%s is a string\n", "this");

  printStuff(214);

  int x[] = { 1, 2, 3};

  printf("the array: %d %d %d\n", x[0], x[1], x[2]);
  
  return 0;
}