Facebook
From Bistre Dove, 5 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 212
  1. #include <stdio.h>
  2. void plus_jeden(int * a);
  3.  
  4. int main()
  5. {
  6.         int m;
  7.         m = -100;
  8.  
  9.         plus_jeden(&m);
  10.  
  11.         printf("\n m = %d\n", m);
  12.         return 0;
  13. }