Answer:
The program to the given question can be given as:
Program:
#include <stdio.h>
//header file.
int main() //main method.
{
int usernum2 = 0;
//define variable.
if(usernum2>12) //check condition
{
printf("usernum2 is less than or equal to 12.\\");
//print value.
}
return 0;
}
Explanation:
In the above C language program first we define an integer variable that is usernum2. In this variable we assign a value that is 0. Then we define the conditional statement in this statement in if block we check usernum2 variable value is greater then 12. if its true it will print "usernum2 is less than or equal to 12".