gpt4 book ai didi

c - 没有#include 的简单 C 程序

转载 作者:行者123 更新时间:2023-12-02 06:12:07 25 4
gpt4 key购买 nike

如何在不包含 stdio.h 的情况下直接调用“printf”?

我在这里找到了一个有趣的教程:
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 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

不幸的是,它失败了:

hello.o:hello.c:(.text+0x26): undefined reference to `ss'

如何解决这个问题?

最佳答案

您可以将 printf 的声明复制到您的程序中。在 C 中,包含其他文件只是将其文本复制粘贴到您的程序中。因此,您可以通过自己复制粘贴来完成这项工作。

extern int printf (const char* format, ...);

int main()
{
printf("Hello, world!\n");
return 0;
}

链接器肯定会在库中找到正确的定义,您的程序默认链接到这些库中。

关于c - 没有#include <stdio.h> 的简单 C 程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1483202/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com