一个没有 #include的简单 C 程序
如何直接调用“printf”而不包含stdio.h?
我在这里找到了一个有趣的教程:
http://www.halcode .com/archives/2008/05/11/hello-world-c-and-gnu-as/
所以,这是我的尝试:
int main(){
char ss[] = "hello";
asm (
"pushl %ebp ;"
"movl %esp, %ebp ;"
"subl $4, %esp ;"
"movl $ss, (%esp) ;"
"call _printf ;"
"movl $0, %eax ;"
"leave ;"
"ret ;"
);
return 0;
}
我正在使用 MinGW 4.4,以下是我编译它的方法:
gcc -c hello.c -o hello.o
ld你好.o -o hello.exe C:/mingw/lib/crt2.o C:/mingw/lib/gcc/mingw32/4.4.0/crtbegin.o C:/mingw/lib/gcc/mingw32/4.4.0/crtend.o -LC:/mingw/lib/gcc/mingw32/4.4.0 -LC:/mingw/lib -lmingw32 -lgcc -lmsvcrt -lkernel32
不幸的是,它失败了:
hello.o:hello.c:(.text+0x26): 对 `ss' 的未定义引用
如何解决这个问题?
How to call "printf" directly without including stdio.h ?
I found a interesting tutorial here:
http://www.halcode.com/archives/2008/05/11/hello-world-c-and-gnu-as/
So, here's my attempt:
int main(){
char ss[] = "hello";
asm (
"pushl %ebp ;"
"movl %esp, %ebp ;"
"subl $4, %esp ;"
"movl $ss, (%esp) ;"
"call _printf ;"
"movl $0, %eax ;"
"leave ;"
"ret ;"
);
return 0;
}
I'm using MinGW 4.4, and here's how I compile it:
gcc -c hello.c -o hello.o
ld hello.o
-o hello.exe C:/mingw/lib/crt2.o C:/mingw/lib/gcc/mingw32/4.4.0/crtbegin.o
C:/mingw/lib/gcc/mingw32/4.4.0/crtend.o
-LC:/mingw/lib/gcc/mingw32/4.4.0 -LC:/mingw/lib -lmingw32 -lgcc -lmsvcrt -lkernel32
Unfortunately, it fails:
hello.o:hello.c:(.text+0x26): undefined reference to `ss'
How to fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以将
printf
的声明复制到您的程序中。在 C 中,包含其他文件只是将其文本复制粘贴到程序中。因此,您可以通过自己进行复制粘贴来完成这项工作。链接器肯定会在库中找到正确的定义,默认情况下您的程序将链接到该定义。
You can copy the declaration of
printf
into your program. In C, including other file is a mere copy-pasting its text into your program. So you can do this job by doing the copy-paste on your own.Linker will surely find the proper definition in the libraries, against which you program is linked by default.
非常轻松
然后使用 printf 语句编写一个 C 程序
以 .c 扩展名保存程序
并运行程序
它将起作用......
即使它可以包含像 clrscr()、getch() 这样的函数,它们是 conio.h 的一部分
Its very ease
Write one c program using printf statement then
save the program with .c extension
and Run the program
It will work....
Even it can contain function like clrscr(), getch() which are part of conio.h