58. Serial Data Manupulation

Question.7

What is printed on the Serial monitor?  ( after executing the following code )


void setup() {
  Serial.begin(115200);
  Serial.println((float)22 / 7, 4);
}

void loop() {
}

 

Select Answer