Simulation Core
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

7 lignes
190 B

  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. }