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
English,
1 month ago
India Languages,
1 month ago
Science,
1 month ago
Math,
3 months ago
Math,
9 months ago
Computer Science,
9 months ago