Simulation Core
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

redis_io.c 190 B

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