
C
language objective types questions and answers with solution or explanation
1.
#include<stdio.h>
int main(){
int a=0;
#if (a==0)
printf("Equal");
#else if
printf("Not equal");
#endif
return 0;
}
(A) Equal...