Decipher the following C program and describe what the execu
Decipher the following C program and describe what the execution results are. (Note: the pre-processor characters concatenate two strings together.) define cat (x,y) y##x #define dog (x,y) cat (y, #define cow (x dog (y,x) cow (dog (i ,n) ,cat (a,m)
Solution
cat (x,y ) > yx ; dog (x,y) > xy ; cow (x,y )> dog(y,x) > yx
Hence,
Solution : cow (in,ma) > main
