C examples for stdlib.h:EXIT_SUCCESS
<cstdlib> <stdlib.h>
Success termination 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; }