Latest TCS Aptitude Question SOLUTION: What is the output of this C code? #define a 20 int main() { const int a = 50; printf("a = %dn", a); } 1)a=50 2)a=20 3)Run time error 4)Compilation Error