Question:What will be output if you will compile and execute the following c code?

#define PRINT printf("c");printf("c++");
int main(){
  float a=5.5;
  if(a==5.5)
    PRINT
  else
    printf("Not equal");
  return 0;

A c c++ Not equal 

B Not equal 

C c c++ 

D Compiler error 

E None 

+ Answer
+ Report
Total Preview: 1123

Copyright © 2024. Powered by Intellect Software Ltd