Sat Oct 21 2023 16:00:49 GMT+0000 (Coordinated Universal Time)
Saved by @usman_hamed
#include <stdio.h> int main() { int a , b; printf("enter two integers : "), scanf("%d %d",&a,&b); if(a>b){ printf("%d is greater than %d",a,b); } if(a<b){ printf("%d is smaller than %d",a,b); } if(a==b){ printf("%d is equal to %d",a,b); } }
Copy this HTML code:
Preview:
open_in_newInstructions on embedding in Medium
Comments