Latest TCS Aptitude Question SOLUTION: Predict the output of following code: main() { int a=2; if(a-- , --a, a) // if(2, 0, 0) last value 0 →False printf(“Tom”); else printf(“Jerry”); } 1. Tom 2. Jerry 3. Tom