fork download
  1. #include<stdio.h>
  2.  
  3. void main(int argc, char* argv[]){
  4. int i=1;
  5. printf("%d\n",++i*i++);
  6. printf("Value of i is: %d\n",i);
  7. }// your code goes here
Runtime error #stdin #stdout 0s 2160KB
stdin
Standard input is empty
stdout
6
Value of i is: 3