问题:#
0004
Which of one of these represents an assignment operation?
问题:#
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)
问题:#
0008
What does 7/9*9 equal (in C and C++)?
问题:#
0009
If all is successful, what should main return?
问题:#
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?
问题:#
0028
The statement "extern int x;" is a ____?
问题:#
0029
What's the difference between buffered I/O and unbuffered I/O?
问题:#
0031
Is following code correct? Why?
const char *s = "abcdefg";
s++;