Indicate what would the SWAP macro be expanded to on preprocessing. Would the code compile? #define SWAP (a, b, c ) (c t; t = a, a = b, b = t; )main(){ int x = 10, y = 20; SWAP (x, y, int ); printf (
Indicate what would the SWAP macro be expanded to on preprocessing. Would the code compile? #define SWAP (a, b, c ) (c t; t = a, a = b, b = t; )main(){ int x = 10, y = 20; SWAP (x, y, int ); printf (
This topic has been deleted. Only users with topic management privileges can see it.