當前位置:學識都>好好學習>考研>

計算機類筆試題

學識都 人氣:8.74K

1. Which of the following statements describe the use of the keyword static?

計算機類筆試題

(1)Within the body of a function: A static variable maintains its value between function revocations

(2)Within a module: A static variable is accessible by all functions within that module

(3)Within a module: A static function can only be called by other functions within that module

2. Embedded systems always require the user to manipulate bits in registers or variables. Given an integer variable a, write two code fragments. The first should set bit 5 of a. The second shnuld clear bit 5 of a. In both cases, the remaining bits should be unmodified.

3. What does the following function return?

char foo(void)

{

unsigned int a = 6;

iht b = -20;

char c;

(a+b > 6) ? (c=1): (c=0);

return c;

}