# Homework 1 : Identify errors

> 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.

```c
#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.
