A
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;
}
#define message_for(a, b)
printf("Learn " #a " programming language at " #b)
int main(void){
message_for(python, w3schools);
return 0;
}
- Correct Answer - Option(A)
- Views: 24
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.