非是非
Thinking, Express
|

测验题目

问题:#0004
Which of one of these represents an assignment operation?
C c1 = c2;
c3 = c4;
问题:#0005
Can you name the special functions a C++ compiler can create implicitly?
问题:#0006
What are the two ways to achieve automatic type conversion from type X to type Y?
问题:#0007
Evaluate as true or false: !(1 && 0 || !1) 
false
true
Invalid statement
问题:#0008
What does 7/9*9 equal (in C and C++)? 
7
0
0.08642
问题:#0009
If all is successful, what should main return?
void
1
0
问题:#0011
What is "shallow copy" and "deep copy"?
问题:#0014
Implement C funtion "strlen" in your own code.
问题:#0015
What does following declaration mean?

const char *s;
char const *s;
char *const s;
问题:#0027
In C program,  at runtime,  
    * auto variables are stored in? 
    * static variables are stored in? 
    * function parameters are stored in?
neither stack nor heap
heap
stack
问题:#0028
The statement "extern int x;" is a ____?

Variable Definition
Variable Declaration
问题:#0029
What's the difference between buffered I/O and unbuffered I/O?
问题:#0031
Is following code correct? Why?

const char *s = "abcdefg";
s++;
非是非 | 联系 | 关于 | 向开发者捐赠 |

版权所有 © 非是非, 2007~2015

我觉得这个站点或页面: 有用 没用 有趣 无趣 有错 |