You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
503 B
C++
20 lines
503 B
C++
#include <cstdlib>
|
|
#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 ----------
|
|
|