格式字符串是以()开头的字符串,在%后面跟有各种格式字符,以说明输出数据的类型、形式、长度、小数位数等。
查看答案
字符常量中有一类以()开始的特殊的常量称为转义字符,这些转义符有固定的含义。
putchar() 函数是字符输出函数,其功能是在显示器上输出()个字符常量或字符变量的值。
Select the correct statement.
A. Break ends the loop, ignoring the loop condition
Break ends the loop, ignoring all further statements
Continue goes back to the start of the loop
D. All of the above
range(3) creates a sequence of which numbers?
A. [1,2,3]
B. [0,1,2,3]
C. [0,1,2]
D. [1,2]