fork download
  1. #include <stdio.h>
  2. int main()
  3. {int x,y;
  4. printf("Enter value for x :");
  5. scanf("%d\n",&x);
  6. printf("Enter value for y :");
  7. scanf("%d\n",&y);
  8. if(x>y)
  9. printf("x is large number %d\n");
  10. else
  11. printf("y is large number %c\n");
  12. return 0;
  13. }
Success #stdin #stdout 0s 5504KB
stdin
Standard input is empty
stdout
Enter value for x :Enter value for y :x is large number  -1038883440