下列程序的运行结果是?( )
byte num[]= {1, 2, 3, 4, 5, 6, 7, 8};
Serial.printf("%d %d\n", num[1], sizeof(num)/sizeof(num[1]))
1 4
1 8
2 4
2 8