15 is greater than 13 ?

C Programming Language / Decision Making of C Language

823

Program:

#include"stdio.h"
void main( )
{
 int x,y;
 x=15;
 y=13;
 if (x > y )
 {
  printf("x is greater than y \n");
 }
}

Output:

x is greater than y
Press any key to continue . . .

This Particular section is dedicated to Programs only. If you want learn more about C Programming Language. Then you can visit below links to get more depth on this subject.