Simulation Core
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

1234567
  1. #include <stdio.h>
  2. void addnums( int* a, int* b )
  3. {
  4. int c = (*a) + (*b); /* convert pointers to values, then add them */
  5. printf("sum of %i and %i is %i\n", (*a), (*b), c );
  6. }