InterviewSolution
Saved Bookmarks
| 1. |
What is the output for the following code snippet?#include<stdio.h>#define A -B#define B -C#define C 5int main(){printf("The value of A is %d\n", A);return 0;}This question is contributed by Aastha Anand.(A) The value of A is 4(B) The value of A is 5(C) Compilation Error(D) Runtime Error |
| Answer» | |