printf似乎在循环之前的工作方式不同

时间:2017-02-17 16:06:50

标签: c loops assembly printf puts

我开始学习c编程语言,当我做练习时,我看到一个非常奇怪的错误,因为确保这是真正的错误,而不是程序中的其他内容,我在另一个项目中写了

代码是:

  1 #include <stdio.h>
  2 
  3 int main (){
  4         printf("ciao come va");
  5         for(;;);
  6         return 0;
  7 }
  

gcc -o test main.c   ; ./test ---&gt;而回归是(谭谭谭)   没有 !在我的shell上没有出现任何东西!

并且进程没有返回,在我的系统监视器上看到它,所以这意味着它永远进入for循环

我的第一个问题是:为什么我不打印任何东西? printf是调用befor循环!

使用gcc -S我编译而不是Assamble,并且汇编代码接缝也是正确的

  1         .file   "main.c"
  2         .section        .rodata
  3 .LC0:
  4         .string "ciao come va"
  5         .text
  6         .globl  main
  7         .type   main, @function
  8 main:
  9 .LFB0:
 10         .cfi_startproc
 11         pushq   %rbp
 12         .cfi_def_cfa_offset 16
 13         .cfi_offset 6, -16
 14         movq    %rsp, %rbp
 15         .cfi_def_cfa_register 6
 16         movl    $.LC0, %edi
 17         movl    $0, %eax
 18         call    printf
 19 .L2:
 20         jmp     .L2
 21         .cfi_endproc
 22 .LFE0:
 23         .size   main, .-main
 24         .ident  "GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609"
 25         .section        .note.GNU-stack,"",@progbits

我不太了解汇编,但我看到printf被称为循环!

那怎么可能呢?

第二个问题:如果我在静态字符串中添加“\ n”,它就像我期望的那样工作!

  1 #include <stdio.h>
  2 
  3 int main (){
  4         printf("ciao come va\n");
  5         for(;;);
  6         return 0;
  7 }
  

结果是:ciao来va

并且因为for循环而不返回进程 ,正如我所料

汇编代码是:

  1         .file   "main_con_new_line.c"
  2         .section        .rodata
  3 .LC0:
  4         .string "ciao come va"
  5         .text
  6         .globl  main
  7         .type   main, @function
  8 main:
  9 .LFB0:
 10         .cfi_startproc
 11         pushq   %rbp
 12         .cfi_def_cfa_offset 16
 13         .cfi_offset 6, -16
 14         movq    %rsp, %rbp
 15         .cfi_def_cfa_register 6
 16         movl    $.LC0, %edi
 17         call    puts
 18 .L2:
 19         jmp     .L2
 20         .cfi_endproc
 21 .LFE0:
 22         .size   main, .-main
 23         .ident  "GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609"
 24         .section        .note.GNU-stack,"",@progbits

那么,你怎么看到17行,被调用的函数是puts而不是printf!

所以第二个问题是:为什么第二个代码有效,第一个代码没有? 为什么如果我在程序集中调用我的c程序中的printf称为puts?为什么我只在字符串中写出新的“\ n”字符?

1 个答案:

答案 0 :(得分:2)

它没有显示,因为标准输出是行缓冲的,并且您没有包含换行符。数据被卡在缓冲区中,直到打印换行符(或程序结束,但你的程序没有)。

要修复,请添加换行符:

printf("ciao come va\n");
                    ^
                    |
                  boom!