int a,b,c; 
a=b++, c++; //error here
I'm trying to test if a will get the value of c++
Error Message:
Uninitialized local variable 'b' used
Uninitialized local variable 'c' used
EDIT: I read this on the internet http://www.studytonight.com/cpp/operators-and-their-types.php, but it is wrong that's what other user's say
 
    