#include int main(void) { int intNum; // prompt user for input printf("Enter an integer: "); // read user input and store at intNum variable scanf("%d", &intNum); // test the input value, if equal to 3 or TRUE if(intNum == 3) { // print the number with some info printf("Integer number = %d\n", intNum); printf("The if condition is fulfilled!\n"); } else // the if condition is FALSE printf("This is the next statement, after the if body\n"); return 0; }