Find the error in the following code:
#include<stdio.h>
int main() {
int x = 50, y = 100;
if (x = = y)
printf("x is equal to y\n");
else if (x > y)
printf("x is greater than y\n");
else if (x < y)
printf("x is less than y\n") i
return 0;
}
Answers
Answered by
0
I don'tunderstand please correct the answer
Similar questions