C - Loop Control Statements
Identify the error in the following C code snippet:
int i = 0;
while(i < 5) {
if(i == 3)
break
printf("%d ", i);
i++;
}