Find out error(s), if any, in the following code and correct it:

```c
int main()
if (10 % 2 == 0)
break;


```

a) The code is correct
b) The use of `break` outside a loop is incorrect
c) The condition in the `if` statement is incorrect
d) There is no error in the code