eg0rmaffin

iwanttosleep

Jul 4th, 2019
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.20 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. void putint(int a)
  4. {
  5.     printf("%i", a);
  6. }
  7.  
  8. int main()
  9. {
  10.     int a;
  11.     int b;
  12.    
  13.     int *pa;
  14.     int *pb;
  15.    
  16.     *pa = &a;
  17.     *pb = &b;
  18.    
  19.    
  20.    
  21.    
  22. }
Advertisement
Add Comment
Please, Sign In to add comment