fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int a=10;
  6. int b=10;
  7. printf("a=%d\n",++a);
  8. //printf("a=%d\n",a);
  9.  
  10. b=b+1;
  11. printf("b=%d\n",b);
  12.  
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0s 5328KB
stdin
Standard input is empty
stdout
a=11
b=11