Latest C Aptitude Question SOLUTION: output? #define square(x) x*x main() {i nt i; i = 64/square(4); printf("%d",i); } Answer: 64 Explanation: the macro call square(4) will substituted by 4*4 so the expression becom