fork(1) download
  1. #include <stdio.h>
  2. int misteri(int a, int *b) {
  3. int c=3;
  4. *b = a + c;
  5. return c;
  6. }
  7. int main() {
  8. int a=5, b=10, c=15;
  9. a += misteri(b, &c);
  10. printf("%d %d %d", a, b, c);
  11. return 0;
  12. }
Success #stdin #stdout 0s 4212KB
stdin
Standard input is empty
stdout
8 10 13