✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What is the output for the following code snippet?
#include <stdio.h>
#define A -B
#define B -C
#define C 5
int main()
{
printf("The value of A is %d\\n", A);
return 0;
}