What is the output for the following code snippet?
#include #define A -B #define B -C #define C 5 int main() { printf("The value of A is %dn", A); return 0; }
Answer: B
No answer description available for this question.