ESP32 for Arduino环境下,下列程序的运行结果是?( )
int num[][2] = {0, 1, 2, 4, 5, 6, 7, 8}; Serial.printf("%d %d\n", num[1][1], sizeof(num));
1 8
4 8
1 32
4 32