Top

Discussion

What is the output of this C code?    

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

 

  • A.1
  • B.2
  • C.Compile time error

Answer:

No comment is present. Be the first to comment.
Loading…

Post your comment