1 2 3 4 5 6 7 | #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); } |
1 2 3 4 5 6 7 | #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); } |
Be the first to receive the latest updates from Codesdoc by signing up to our email subscription.