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