EXIT_SUCCESS - C stdlib.h

C examples for stdlib.h:EXIT_SUCCESS

Type macro

From


<cstdlib>
<stdlib.h>

Description

Success termination code

Demo Code


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

int main ()//ww  w. j  a  v  a2s . c  o m
{
  printf("%d",EXIT_SUCCESS);
  return EXIT_SUCCESS;
}

Related Tutorials