题目内容

The conversion control sequence "%X.Yf" makes the printf() function prints a floating-point number with the fixed total width of X. (You do not need to consider the special case that the floting-point number has more digits than X.)

A. 对
B. 错

查看答案
更多问题

The conversion control sequence "%Xd" makes the printf() function prints an integer with the fixed width of X. (You do not need to consider the special case that the integer number has more digits than X.)

A. 对
B. 错

You can use the conversion control sequence "%X.Yd" to print a fixed width integer number.

A. 对
B. 错

We can assign a value to a symbolic constants.

A. 对
B. 错

Pick all the symbolic constants in the following program.#include #define PI 3.1416#define INTEREST_RATE 0.05#define DAYS_IN_A_YEAR 365int main(){int days_in_a_month = 30;int number_of_students = 35;float tax_rate;return 0;}

A. PI
B. INTEREST_RATE
C. DAYS_IN_A_YEAR
D. days_in_a_month
E. number_of_students
F. tax_rate

答案查题题库