Computer Science, asked by farzanaar2005, 2 months ago

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 sandhyanullari
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