C - Input and Output
Find the error in this C code snippet that reads and prints a number:
#include <stdio.h>
int main() {
int num;
printf("Enter number: ");
scanf("%d", num);
printf("Number is %d\n", num);
return 0;
}