fork download
  1. #include <stdio.h>
  2. int main()
  3. {
  4. int a=3,b=5,c,d;
  5. c=a+b;
  6. d=a-b;
  7. printf("a+b=%d,a-b=%d\n",c,d);
  8. return 0;
  9. }
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
a+b=8,a-b=-2