For c++ which ide is best?

Vim

1 Like

VS code is best

Sublime and VS code along with there extensions both are my favourite.

People are commenting out text editors like sublime. I good IDE for c++ is CLION having features for development and code debugging, syntax correction as well.

1 Like

I personally like sublime text and Atom

can u share the setup of sublime text for c++.

https://blog.codingblocks.com/2016/setting-up-sublime-text-for-competitive-coding/

Here it is

1 Like

thanks

CodeBlocks is one of the best IDE for c/c++ development. Apart from it Sublime text 3 is also one of the best editor,but the major difference between codeblocks and sublime is : codeblocks shows recommendations of the pre-defined functions of c/c++ while sublime donot!.

So,if you are beginner then i will suggest go for sublime else use blocks, as codeblocks is mainly for developers not for beginners.

Can we have add "User Snippet " in geany like for segment tree code snippet any many short hand code snippet??

sublime with a custom build system

i personally use Visual Studio Code for everything.

Visual Studio is a great IDE, for CP it has some limitations because it has visual c++ compiler.

Sublime Text 3

We can avoid infinite loop problem in sublime.
This is my make file

{ "cmd":["bash", "-c", "g++ -std=c++14 -Wall '${file}' -o '${file_path}/${file_base_name}' && timeout 0.5s '${file_path}/${file_base_name}'"], "file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$", "working_dir": "${file_path}", "selector": "source.c, source.c++", "variants": [ { "name": "Run", "cmd":["bash", "-c", "g++ -std=c++14 '${file}' -o '${file_path}/${file_base_name}' && timeout 0.5s '${file_path}/${file_base_name}' <input/input.txt >input/output.txt"] } ] }

codechef ide

2 Likes

CLion

1 Like

checkout my setup based on atom>

There’s no best; I use CLion.