

MCQOPTIONS
Saved Bookmarks
1. |
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;} |
A. | Error : 'Expression syntax' |
B. | Error : 'L value required' |
C. | Error : 'R value required' |
D. | The code runs successfully. |
Answer» C. Error : 'R value required' | |