Largest two number


#include <stdio.h> void main() { int a,b; printf("\n Enter the two numbers:"); scanf("%d%d",&a,&b); printf("%d\t%d",a,b); if(a>b) { printf("\n a is greater than b"); } else { printf("\n b is greater than a"); } }
5 6
Click on the Run button to get started.
The code/input has changed since you last clicked on Run. Click it
again to see the updated changes.
Comments