阿尔卡特朗讯招聘笔试程序题目

1. main主函数执行完毕后,是否可能会再执行一段代码,给出说明?

crt会执行另一些代码,进行处理工作。

如果你需要加入一段在main退出后执行的代码,可以使用atexit()函数,注册一个函数。

语法:

#include

int atexit(void (*function”)(void));

#include

#include

void fn1( void ), fn2( void ), fn3( void ), fn4( void );

int main( void )

{

atexit( fn1 );

atexit( fn2 );

atexit( fn3 );

atexit( fn4 );

printf( “This is executed first.\n” );

}

void fn1()

{

printf( “next.\n” );

}

void fn2()

{

printf( “executed ” );

}

void fn3()

{

printf( “is ” );

}

void fn4()

{

printf( “This ” );

}

2. 如何打印出当前源文件的文件名以及源文件的当前行号?

通常使用的就是__FILE__, __LINE__,在调试函数中利用“%s”,”%ld”,打印就好了。

3. There are two int variables: a and b, don’t use “if”, “? :”, “switch” or other judgement statements, find out the biggest one of the two numbers.

4. 如何判断一段程序是由C编译程序还是由C++编译程序编译的?

c++编译时定义了 __cplusplus

c编译时定义了 _STDC_

相关内容:

移动笔试题目精选

玛氏招聘笔试真题附笔经

立信招聘笔试真题分享

百度2013招聘笔试及整合答案

本文已影响6827
上一篇:联想普天招聘笔试真题分享 下一篇:2013戴尔(DELL)招聘英文笔试真题

相关文章推荐

|||||