C Tutorial/stdlib.h/abort — различия между версиями
Admin (обсуждение | вклад) м (1 версия: Импорт контента...) |
(нет различий)
|
Текущая версия на 10:32, 25 мая 2010
abort
Item Value Header file stdlib.h Declaration void abort(void); Function The abort() function causes immediate abnormal termination of a program.
#include <stdlib.h>
#include <stdio.h>
int main(void)
{
abort();
return 0;
}