int main() { printf("Value1: "); printf("\nValue2: "); printf("\nValue3: " ); printf("\nValue4: "); printf("\nsomething");
return 0; } // This is the output // // [C674X_0] Value1: // Value2: // Value3: // Value4:
// I don't know why it's not printing the last printf statement
// As I step thru the code, I don't see "Value1" get printed till I am on Value3
// Does anyone know what's going on here?