Question.5
What will be the output on the Serial Monitor when the following code is executed?
void setup() { Serial.begin(115200); int value = 123; Serial.print("Value: "); Serial.print("\n"); Serial.print(value); } void loop() { }
Select Answer
Value: 123
Value: \n123
Value: \n 123