34. EEPROM Programming- Arduino

Question.3

Consider the following code:

EEPROM.put(0, 123.456f);
float val;
EEPROM.get(0, val);


What value will val contain after executing this code?

Select Answer