WRITE THE OUTPUT OF THE FOLLOWING
include <stdio.h>
int main()
{
int x = 20;
int y = 22;
if (x>y)
{
printf("Variable x is less than y");
}
return 0;
Answers
Answered by
0
Explanation:
include <stdio.h>
int main()
{
int x = 20;
int y = 22;
if (x<y)
{
printf("Variable x is less than y");
}
return 0;
}
Please follow me
Similar questions