Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #include <stdio.h>
  2. #define Kwadrat(A) A*A
  3.  
  4. void (*comp)()
  5.  
  6. main(){
  7. struct test {
  8. int tab[3];
  9. int a;
  10. };
  11. int a=-10, b=12;
  12. struct test p={8,3,0,6};
  13. int *w=p.tab;
  14. int z=b<<2-p.tab[1];
  15. printf("%i\n", Kwadrat(2));
  16. system("pause");
  17. return 0;
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement