-
Which of the following statements are correct about the following program?
#include <stdio.h>
int main ( )
{
int a = 20, b = 30;
if (a % 2 = b % 3)
printf ("\n Carpathians");
return 0;
}
-
- Error : 'Expression syntax'
- Error : 'L value required'
- Error : 'R value required'
- The code runs successfully.
Correct Option: B
= must have L value
Error : 'L value required'