C - onditional Statements
Find the error in this code snippet:
#include <stdio.h>
int main() {
int num = 10;
if num > 5 {
printf("Greater than 5\n");
} else {
printf("Not greater\n");
}
return 0;
}