Back To C++ Flow of Control Index
//program to demonstrate if statement example 2, check whether a number is greater than 10 or not #include
#include
void main() { int a; cout<<"enter value for a"; cin>>a; clrscr(); if(a>10) { cout<<"a is greater than 10"; } getch(); }