Guest User

Untitled

a guest
May 16th, 2018
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.21 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <Windows.h>
  3. int main(){
  4. int (*pmsbx)(HWND, char*, char*, UINT) = &MessageBox;
  5. MessageBox(NULL, "Hi!","msbx", MB_OK);
  6. (*pmsbx)(NULL, "Hi again!", "pointer to msbx", MB_OK);
  7. return 0;
  8. }
Add Comment
Please, Sign In to add comment