当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C语言 abort()用法及代码示例



描述

C库函数void abort(void)中止程序执行并直接从调用位置出来。

声明

以下是 abort() 函数的声明。

void abort(void)

参数

  • NA

返回值

此函数不返回任何值。

示例

下面的例子展示了 abort() 函数的用法。

#include <stdio.h>
#include <stdlib.h>

int main () {
   FILE *fp;
   
   printf("Going to open nofile.txt\n");
   fp = fopen( "nofile.txt","r" );
   if(fp == NULL) {
      printf("Going to abort the program\n");
      abort();
   }
   printf("Going to close nofile.txt\n");
   fclose(fp);
   
   return(0);
}

让我们编译并运行上面的程序,当它尝试打开时将产生以下结果nofile.txt文件,该文件不存在 –

Going to open nofile.txt                                                    
Going to abort the program                                                  
Aborted (core dumped)

相关用法


注:本文由纯净天空筛选整理自 C library function - abort()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。