开发者

Linux system() API [closed]

开发者 https://www.devze.com 2023-01-10 23:35 出处:网络
This question is unlikely to help any future visitors; it开发者_如何转开发 is only relevant to a small geographic area, a specific moment in time,or an extraordinarily narrow situation that is not
This question is unlikely to help any future visitors; it开发者_如何转开发 is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center. Closed 10 years ago.

Can anybody tell me the output of the below code, whether "bye" will be printed or not?

#include <stdio.h>

int main()
{

 system("ls -l");
 printf("bye");

 return 0;
}


man system says:

  int system(const char *command);

system() executes a command specified in command by calling /bin/sh -c command, and returns after the command has been completed.

And after system() returned, your printf will be executed.


Yes, it will be printed.

Why don't you compile it and test it for yourself? Cut and paste what you've written to a file, e.g. foo.c, and then do the following

gcc -o foo foo.c
./foo

As there is no newline character after your printf("bye") it will end up at the start of your current line; putting printf("bye\n") instead will be a little more clear.


Why wouldn't it? There's no conditional statement, so every part of the code will be executed.

It will print the output of the command provided by system and then print "bye"


The program is going to execute ls -l just fine.

Also, "bye" should indeed be printed. However, since you have not included a '\n' character you will only be seeing it with your prompt appended to it.

Also, if you are not seeing it, then for some reason your output is not flushing when the program exits. Adding a '\n' character may very well fix that issue if that is what you are seeing.


It all depends upon the free memory. You will need to check return value of the system command.it returns 0 on success. Your printf statement will be called but not sure that system command will always success.

Thanks, Neel

0

精彩评论

暂无评论...
验证码 换一张
取 消