Homework 1 : Identify errors

“It’s not a bug — it’s an undocumented feature.”

It is recommended to understand everything in Hello World! before attempting this homework

The following code includes several errors. Identify the errors and correct them so that the code can be compiled.

#include <stdioh>

void main() {
  printf("Hello, World!")
  printf("Welcome to the first software tutorial!");
  
  return 0;

Your correct code should give the following output:

Hello, World!
Welcome to the first software tutorial!

ZINC Submission

Submit your error-free code to ZINC.

Last updated