Sail E0 Webinar
Question


Which of the following statements are correct about the below program?


#include<stdio.h>
int main()
{
int i = 10, j = 15;
if(i % 2 = j %3)
printf("Placementadda\n");
return 0;
}
Options:
A .  Error: Expression syntax
B .  Error: Lvalue required
C .  Error: Rvalue required
D .  The Code runs successfully
Answer: Option B

if(i % 2 = j % 3) This statement generates "LValue required error". 

There is no variable on the left side of the expression to assign (j % 3).



Was this answer helpful ?
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers