A

Admin • 833K Points
Coach

Q. What will be the output of the following C code?

Code:
#include <stdio.h>

#define message_for(a, b)
printf("Learn " #a " programming language at " #b)

int main(void){
message_for(python, w3schools);
return 0;
}
  • (A) Learn python programming language at w3schools
  • (B) Learn #a programming language at #b
  • (C) Learn programming language at
  • (D) None of these
  • Correct Answer - Option(A)
  • Views: 24
  • Filed under category C Programming
  • Hashtags:

No solution found for this question.
Add Solution and get +2 points.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.