Guest User

Untitled

a guest
Jan 18th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. void foo(int *x) {
  2. typeof(x) y; // Declares y with the type of x
  3. typeof(*x) z; // Declare z with the type what x points to
  4. ...
  5. }
Add Comment
Please, Sign In to add comment