Is there any way to change the initial program that is created when you begin a new c++ prgram? Instead of:
I woud prefer:Code:#ifdef HAVE_CONFIG_H #include <config.h> #endif #include <iostream.h> #include <stdlib.h> int main(int argc, char* argv[]) { cout << "hello, world" << endl; return EXIT_SUCCESS; }
Any ideas?Code:#include <iostream> int main() { return 0; }


Reply With Quote