Answer:
The statement in c is as follows
scanf("%d", &num);
Step-by-step explanation:
In c, the keyword scanf is used to accept input
%d refers to format specifier and it is used when the declared variable is integer;
Note: I'll assume that the variable "num" has already been declared as integer
So, the required statement is :
scanf("%d", &num);