✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що виведе наступний програмний код?
void setup() { Serial.begin(9600);}void loop() { int *pointer; int val=100; pointer=&val; Serial.println(*pointer);}