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