码迷,mamicode.com
首页 > 编程语言 > 详细

c语言中,为什么以下程序直接按”Enter“也就是回车程序不结束?

时间:2017-05-19 21:11:26      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:while   blank   include   file   created   har   style   ret   std   

 1 /*************************************************************************
 2     > File Name: system.c
 3     > Author: Mr.Yang
 4     > Purpose:演示system()函数
 5     > Created Time: 2017年05月19日 星期五 19时29分17秒
 6  ************************************************************************/
 7 
 8 #include <stdio.h>
 9 #include <stdlib.h>
10 
11 char input[40];
12 
13 int main(void)
14 {
15         while(1)
16         {
17                 printf("Input the desire system command,blank to exit:");
18                 fgets(input,40,stdin);
19                 if(input[0] == \0)//检测是否是空字符,如果是,直接退出程序,但在linux上运行不退出?
20                 {
21                         exit(0);
22                 }
23                 else
24                 {
25                         system(input);
26                 }
27         }
28 
29         return 0;
30 }

 

c语言中,为什么以下程序直接按”Enter“也就是回车程序不结束?

标签:while   blank   include   file   created   har   style   ret   std   

原文地址:http://www.cnblogs.com/yanglai/p/6880047.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!