【简答题】The function of the following program is to store the numbers in array a in reverse order . For example: The original array elements are: 4 8 3 10 5 2 7 6 9 12 The array elements of the reverse order ...
【单选题】After executing the program as below, values of variables "h" and "sum" in main function will be( ) unsigned char add ( unsigned char i, int j) { unsigned char sum; sum=i+j; return sum; } void main...
【单选题】In the program as bellows, the loop body will be executed ( ) times. #include sbit MYBIT=P1^0; void main () { unsigned char z; for (z=0;z<=5;z++) { MYBIT=0; MYBIT=1; } }