EXIT_FAILURE - C stdlib.h

C examples for stdlib.h:EXIT_FAILURE

type

macro

From


<cstdlib>
<stdlib.h>

Description

Failure termination code

Demo Code


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

int main ()//from   ww w . jav a2 s. co m
{
  printf("%d",EXIT_FAILURE);

  return EXIT_FAILURE;
}

Related Tutorials