___ is the correct way to include a header file in your program.
A. #include
B. #include ;
C. #include header-file-name
D. #include header-file-name;
查看答案
In the following statements, the printf statement will be executed ____ times. count = 10; while (count <= 10) printf("%d ",count);
A. 0
B. 1
C. 10
D. an infinite number of
Generally, before accumulating values, the accumulator variable should be initialized to ____.
A. -1
B. 0
C. 1
The general form of the while statement is: statement; while (expression);
____ variables allow the programmer to “jump around” the normal safeguards provided by functions.
A. Global
B. Local
C. Static
D. void