1.
int main(void)
{
int height 3. 5;
int width = 25;
if(height == 5 && width == 25)
{
printf("the height and width are correct: ");
}
return 0;
}
Assuming all libraries are included, what is the result of the code above when run?
2.
int main(void)
{
int height = 3;
while(height < 9)
{
printf("The statement evaluated to true!");
height = height +2;
}
return 0;
}
Assuming libraries are included, how may times will the sentence print out?
3.
int main(void)
{
int height = 5;
if(height == 5)
{
printf("The height is equal to 5 !");
}
return 0;
}
Assuming all libraries are included, what is the result of the code above when run?