Code:
What is the outcome of running the following code: int c=0; cout<<c++<<c;

Undefined
01
00
I tried out the program and I keep getting 01...
Code:
psycho@Shiva:~/Programming/Laboratory$ g++ -ansi -pedantic -Wall coutUndefined.cpp
psycho@Shiva:~/Programming/Laboratory$ ./a.out
01