Guest User

Untitled

a guest
May 20th, 2018
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.14 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. void lol(int output) {
  4.     int out = output;
  5. }
  6.  
  7. int main(void) {
  8.     int (*tmp)(int) = lol;
  9.     printf("%d", tmp(68));
  10. }
Add Comment
Please, Sign In to add comment