Home > Programming > Functions using the "C" programming language > example25.c

 

Previous

Next


/*
    In this example we demonstrate the main() function when it returns a value.
    Note that function main can only be declared to return an integer value (or no return value)
*/
#include <stdio.h>
#include <conio.h>

int main() /* int main(void) */
{
    return 0;
}


© 2004 Jim Valavanis

Previous

Next

1