意法半导体软件试题 Test for The C Programming Language

C语言

I. History
1. C was originally designed for and implemented on the (what) operating system on the DEC PDP-11, by (who) .
2. The most recently approved ANSI/ISO C standard was issued in (when) , and single line comments notation “//” is or isn’t a feature of C89.
II. Syntax and Semantics
1. In a runtime C program, auto variables are stored in , static variables are stored in , and function parameters are stored in .
a. stack b. heap c. neither stack nor heap
2. The statement “extern int x;” is a , and the keyword extern is used during .
a. variable declaration b. variable definition
c. compilation time d. runtime
3. There is a complicated declaration: void ( * signal (int, void (*)(int)) ) (int);
If a statement “typedef void (*p) (int);” is given, please rewrite this complicated declaration.
4. The following code is a segment of C program.
……….
void func(int *p)
{………..}
……….
main()
{
int num=0;
………
func(&num);
……..
}
……….
Here, the function argument “&num” is passed .
a. by value b. by reference
III. Practice
Create a tree, which has h (h>0) layers, and its each node has w (w>0) sub-nodes.
Please complete the following incomplete solution.
#include <stdlib.h>
#include <string.h>
struct tree{
char info;
p_sub; //link to sub-nodes
};
// allocate memory and initiate
void dnode ( struct tree* tmp )
{
= malloc( sizeof (struct tree) );
= 0×41;
= NULL;
}
struct tree *dtree (struct tree* subtree, int height, int width)
{
int i;
if ( !subtree ) //if necessary, allocte memory for subtree
denode(subtree);
if ( height == 1 )
return subtree;
else if ( height == 2 ) {
struct tree *leaf = NULL;
for ( i=0; i<width; i++ ) {
denode ( );
;
leaf = NULL;
}
return subtree;
}
else {
for ( i=0; i<width; i++ ) {
}
return subtree;
}
}
main()
{
………
struct tree *root = NULL;
root = dtree (root, h, w) ; // h and w are integers get from input
………
}

I. History

1. C was originally designed for and implemented on the (what) operating system on the DEC PDP-11, by (who) .

2. The most recently approved ANSI/ISO C standard was issued in (when) , and single line comments notation “//” is or isn’t a feature of C89.

II. Syntax and Semantics

1. In a runtime C program, auto variables are stored in , static variables are stored in , and function parameters are stored in .

a. stack b. heap c. neither stack nor heap

2. The statement “extern int x;” is a , and the keyword extern is used during .

a. variable declaration b. variable definition

c. compilation time d. runtime

3. There is a complicated declaration: void ( * signal (int, void (*)(int)) ) (int);

If a statement “typedef void (*p) (int);” is given, please rewrite this complicated declaration.

4. The following code is a segment of C program.

……….

void func(int *p)

{………..}

……….

main()

{

int num=0;

………

func(&num);

……..

}

……….

Here, the function argument “&num” is passed .

a. by value b. by reference

III. Practice

Create a tree, which has h (h>0) layers, and its each node has w (w>0) sub-nodes.

Please complete the following incomplete solution.

#include <stdlib.h>

#include <string.h>

struct tree{

char info;

p_sub; //link to sub-nodes

};

// allocate memory and initiate

void dnode ( struct tree* tmp )

{

= malloc( sizeof (struct tree) );

= 0×41;

= NULL;

}

struct tree *dtree (struct tree* subtree, int height, int width)

{

int i;

if ( !subtree ) //if necessary, allocte memory for subtree

denode(subtree);

if ( height == 1 )

return subtree;

else if ( height == 2 ) {

struct tree *leaf = NULL;

for ( i=0; i<width; i++ ) {

denode ( );

;

leaf = NULL;

}

return subtree;

}

else {

for ( i=0; i<width; i++ ) {

}

return subtree;

}

}

main()

{

………

struct tree *root = NULL;

root = dtree (root, h, w) ; // h and w are integers get from input

………

}

同类其他面试题 点击新一篇或旧一篇可浏览全部同类面试题

新一篇:
旧一篇:

你有答案? 你对以上面试题有意见? 你想发表你的见解? 写下来吧!你的分享将会让很多人受益!

相关面试题

·C语言的字符串复制面试题
·C语言综合编程题
·C语言面试问答题
·C语言笔试
·C++标准库头文件都有哪些?

版权声明:本站大部分内容为原创! 另有少部分内容整理于网络,如需转载本站内容或关切版权事宜请联系站长。未经允许,严禁复制转载本站内容,否则将追究法律责任。 本站欢迎与同类网站建立友情链接,请联系QQ:176687814