codeblocks - How to modify the default initial main.cpp page in the C::B v13 IDE? -


instead of initial snippet:

#include <iostream> using namespace std;  int main()  {     cout << "hello world!" << endl;      return 0; } 

i this:

#include <iostream>  int main()  {     return 0; } 

your question isn't entirely clear, i'll give 3 answers.

if you're referring opens when open code::blocks itself, go settings menu, click environment. make sure you're in general settings section of sidebar; change on application start-up open blank workspace.

if you're referring shows when create new project, @blorgbeard's link has (slightly dated) picture showing how create new project template. set project way want it, open file menu , click save project template.

if you're referring shows when create new file in project, go settings menu, click editor. scroll default code section of sidebar; whatever enter here set default contents c++ source file (or c++ header file) create.


Comments

Popular posts from this blog

javascript - jquery or ashx not working -

opencv - DataType<cv::detail::deriv_type>::depth what is it used for -

python 3.x - Mapping specific letters onto a list of words -