请输入您要查询的百科知识:

 

词条 EXIT_SUCCESS
释义

EXIT_SUCCESS是C语言头文件库中定义的一个符号常量,在vc++6.0下头文件stdlib.h中定义如下: /* Definition of the argument values for the exit() function */ #define EXIT_SUCCESS 0 #define EXIT_FAILURE 1 在codeblocks的stdlib.h中这两个符号常量的注释为: These values may be used as exit status codes

程序例:

#include <cstdlib>

#include <iostream>

using namespace std;

int main(int argc, char *argv[])

{

int a[10];

int i,j,t;

cout<<"输入10个数字:"<<endl;

for(i=0;i<10;i++)

{

cin>>a;

 }

cout<<endl;

for(j=0;j<9;j++)

{

for(i=0;i<9-j;i++)

{

if(a>a[i+1])

{

t=a;

a=a[i+1];

a[i+1]=t;

}

}

}

cout<<"排序的结果是:"<<endl;

for(i=0;i<10;i++)

{

cout<<a<<" ";

}

cout<<endl;

system("PAUSE");

return EXIT_SUCCESS;

}

与EXIT_SUCCESS对应的是EXIT_FAILURE

程序例:

#include <io.h>

#include <conio.h>

#include <stdlib.h>

int main(void)

{

if((_unlink("D:\\\\sample.txt"))==1)

{

cprintf("删除成功\");

exit(EXIT_SUCCESS);

}

else

{

cprintf("删除失败\");

exit(EXIT_FAILURE);

}

return 0;

}

如果要手动修改它的值:下面的代码就可以实现

#include "stdio.h"

#include "stdlib.h"

#ifdef EXIT_SUCCESS

#undef EXIT_SUCCESS

#define EXIT_SUCCESS 2

#endif

void main()

{

printf("%d",EXIT_SUCCESS);

}

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2024/11/16 5:39:03