首页
社区
课程
招聘
[旧帖] 某公司笔试题目(方案之一)[原创] 0.00雪花
发表于: 2010-1-11 23:20 3603

[旧帖] 某公司笔试题目(方案之一)[原创] 0.00雪花

2010-1-11 23:20
3603
题目:

#include "stdio.h"
void print()
{
    *
}

void main()
{
}

在*号处加一段代码,显示出"hello,world".

看了那位大牛的汇编代码之后觉得巨牛无比,于是也模仿着写了个 不用汇编的。

#include <stdio.h>

void print()
{
        #pragma comment(linker, "/entry:print")
        int __stdcall GetStdHandle(char);
        int __stdcall WriteFile(int ,char *,int,int,int);
        WriteFile(GetStdHandle(0x0F5),"hello,world",11,0,0);
        getch();
}

void main()
{
}

说明:
C语言,windows 平台,开发环境 VC6

[注意]传递专业知识、拓宽行业人脉——看雪讲师团队等你加入!

收藏
免费 0
支持
分享
最新回复 (2)
雪    币: 253
活跃值: (11)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
2
学习了
是不是10kx就给我了啊
2010-1-11 23:33
0
雪    币: 295
活跃值: (10)
能力值: ( LV4,RANK:50 )
在线值:
发帖
回帖
粉丝
3
应该加上调用main,如果main里有代码怎么办
2010-1-12 09:58
0
游客
登录 | 注册 方可回帖
返回
//