int x; ++x; x++; // What's the difference between these two statements above? ----------------------------------------- int count = 5, x = 7; int result = x * ++count; ------------------------ int count = 5, x = 7; int result = x * count++; ---------------------------------------- Fraction f1(3,4); cout << ++f1; // can we do this? cout << f1++; // cab we do this?