Advertisement
Guest User

Untitled

a guest
Aug 19th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.22 KB | None | 0 0
  1. void andrzej(int *aa)
  2. {
  3.     for(int i=0;i<3;i++)
  4.         (*aa)++;
  5.     andrzej(&aa);
  6. }
  7. int main()
  8. {
  9.     int aa =0;
  10.     andrzej(&aa);
  11.     int b = 0;
  12.     int tab[3] = { 0,0,0 };
  13.     if (tab[0] == tab[1] == tab[2] == 0)
  14.         b = 3;
  15.  
  16.     int c;
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement