一个没有 #include的简单 C 程序

发布于 2024-08-05 10:24:46 字数 924 浏览 3 评论 0原文

如何直接调用“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

萌无敌 2024-08-12 10:24:46

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

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

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

链接器肯定会在库中找到正确的定义,默认情况下您的程序将链接到该定义。

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.

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

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

Linker will surely find the proper definition in the libraries, against which you program is linked by default.

兰花执着 2024-08-12 10:24:46
int main(void)
{
    char ss[] = "hello";

    __asm(
        "pushl %[ss]\n"    // push args to stack
        "call _puts\n"
        "addl $4, %%esp\n" // remove args from stack
        :: [ss] "r" (ss)   // no output args, no clobbered registers
    );

    /*  C equivalent:
        extern int puts(const char *);
        puts(ss);
    */
}
int main(void)
{
    char ss[] = "hello";

    __asm(
        "pushl %[ss]\n"    // push args to stack
        "call _puts\n"
        "addl $4, %%esp\n" // remove args from stack
        :: [ss] "r" (ss)   // no output args, no clobbered registers
    );

    /*  C equivalent:
        extern int puts(const char *);
        puts(ss);
    */
}
剧终人散尽 2024-08-12 10:24:46
int main() {

    char ss[] = "hello";
    char *p = ss;

    asm (
        "movl %0, (%%esp);"
        "call _printf;" : "=r" (p)
    );

    return 0;
}
int main() {

    char ss[] = "hello";
    char *p = ss;

    asm (
        "movl %0, (%%esp);"
        "call _printf;" : "=r" (p)
    );

    return 0;
}
℉服软 2024-08-12 10:24:46

非常轻松
然后使用 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文