aboutsummaryrefslogtreecommitdiff
path: root/.vim/c-support/codesnippets/main.cc
blob: d87f8910cf1a4477069189e22821fc82c48ecb87 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include	<fstream>
#include	<iomanip>   
#include	<iostream>  

using namespace std;

// ===  FUNCTION  ======================================================================
//         Name:  main
//  Description:  main function
// =====================================================================================
	int
main ( int argc, char *argv[] )
{
	cout	<< "\nProgram " << argv[0] << endl << endl;

	return EXIT_SUCCESS;
}		// ----------  end of function main  ----------