Q. What will be output if you will compile and execute the following c code?
Code:
void main()
{
if(printf(“cquestionbank”))
printf(“I know c”);
else
printf(“I know c++”);
}
β
Correct Answer: (C)
cquestionbankI know c