Advertisement
joker546645

4_2 c

Nov 23rd, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.15 KB | None | 0 0
  1. #include <stdio.h>
  2. void liczba_przeciwna(int * a);
  3. int main()
  4. {
  5.     int  m;
  6.     m = -10;
  7.     liczba_przeciwna(&m);
  8.     printf("\n m = %d\n", m);
  9.     return 0;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement