|
都是基本的题目,好像期末考试一样的感觉。不像别的公司,偏重一些思想方法之类的。
1,求j的值
main()
{
enum state
{
start=10,mid,end
};
int i=0,j=0;
if(12==mid)
{
j=10;
}
else
{
j=100;
}
return 0;
}
2求i和j的值
main()
{
int i=0;
int j=0;
if((i++<0)&&(j++<0))
{
i++;
j++;
}
return 0;
}
3,写出strcpy的原型
4,union的
main()
{
union
{
int i;
char ch;
float f;
}a,b,c;
a.i=256;a.ch=5;a.f=0;
return 0
}
5,求以下程序执行后的后果
void Creat Memory(char *p)
{
p=(char*)malloc(100)
}
void test (void)
{
char *str=NULL;
Creat Memory(str);
strcpy(str,"Mary John");
printf(str);
}
main()
{
test();
return 0;
} |
|