Thursday, August 27, 2020

if else

if (x<y)
{
printf("x is less than y \n");
}
else
{
printf("x is not less than y \n");
}

No comments:

Post a Comment