fork download
  1. void f(int a, int b,int* c,int* d) {
  2. *c = a / b;
  3. *d = a % b;
  4. }
  5.  
Runtime error #stdin #stdout #stderr 0.04s 16544KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
prog.js:1:11 SyntaxError: missing ) after argument list:
prog.js:1:11 void f(int a, int b,int* c,int* d) {
prog.js:1:11 ...........^