KodeGod.com

021. Technical interview question: Give the output of the following code

 
int main()
   {
      int i = 0;
      int j = i+++1;
      printf("%d\n", j);
   }