OneCompiler

C

123

#include <sidio.h>
#include <conio.h>
void main()
{
clrscr();
int p,q;
printf("Enter the value of p&q:");
scanf("%d %d",&p,&q);
if(p>q)
printf("p is greater than q");
getch();
}