Can someone pin point the error?
Heres my code: #include <stdio.h> main (void) { int num1; int num2; int num3; printf("Enter the first integer: "); scanf("%d", &num1); printf("Enter the second integer: "); scanf("\n%d", &num2); printf("Enter the third integer: "); scanf("\n%d", &num3); if(num1>num2>num3); printf("%d %d %d", num1, num2, num3); return 0; } TEST CASE 1 Result: Enter the first integer: 3 Enter the second integer: 2 Enter the third integer: 1 3 2 1 Expected result: Enter the first integer: 3 Enter the second integer: 2 Enter the third integer: 1 3 2 1 Yes TEST CASE 2 RESULT: Enter the first integer: 1 Enter the second integer: 2 Enter the third integer: 3 1 2 3 THE RESULT OF TEST 2 IS CORRECT BUT IN TEST 1 IS WRONGđ€ whats the error for the test number 1?