Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #define let(x) typeof(x)
- struct foo {
- int a, b, c, d, e, f;
- };
- int main() {
- let(int) a;
- let(int[5]) b;
- let(int*) x, y, z;
- // yes, x, y, *and* z are of type int*.
- let(struct foo) ww;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement