Latest Huawei Aptitude Question SOLUTION: What will be output if you will compile and execute the following ccode? #define call(x,y) x##y void main() { int x=5,y=10,xy=20; printf("%d",xy+call(x,y)); } (A) 35 (B) 510 (C) 15