When submitting a solution in C++, please select either C++14 (GCC 6-32) or C++17 (GCC 7-32) as your compiler. ×

o0o0o's blog

By o0o0o, 9 years ago, In English

I personally feel good to use Codeblocks, its interface so good and feel free to code !

Can I customize the keyboard shortcuts, shortcut like Vim ?

  • Vote: I like it
  • +20
  • Vote: I do not like it

| Write comment?
»
9 years ago, # |
  Vote: I like it +3 Vote: I do not like it

personally i love to use eclipse as is autocompletion is smarter than the one in codeblocks.

»
9 years ago, # |
  Vote: I like it +20 Vote: I do not like it

Visual Studio 13 because of autocompletion.

  • »
    »
    7 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    but visual studio doesn't have gnu g++ compiler right? That's why i stopped using VS 13.

    • »
      »
      »
      7 years ago, # ^ |
        Vote: I like it 0 Vote: I do not like it

      Bad reason.

    • »
      »
      »
      7 years ago, # ^ |
        Vote: I like it 0 Vote: I do not like it

      Actually, after this 21 months I've changed Windows to Ubuntu, and now I use CLion. If I want to specify some libs, then I compile project in console with all necessary keys.

      • »
        »
        »
        »
        4 years ago, # ^ |
          Vote: I like it 0 Vote: I do not like it

        Isn't CLion just available for 1 month of free usage? or did you purchase the premium one?

        • »
          »
          »
          »
          »
          4 years ago, # ^ |
            Vote: I like it 0 Vote: I do not like it

          it's free for students

        • »
          »
          »
          »
          »
          3 years ago, # ^ |
            Vote: I like it +17 Vote: I do not like it

          years after I realized Sublime Text 3 to be the best choice :)

          • »
            »
            »
            »
            »
            »
            3 years ago, # ^ |
              Vote: I like it 0 Vote: I do not like it

            How do you deal with infinite loop run? Which cause the output.txt file to increase the size infinitely as I could not stop that activity and hence I need to reboot my PC deliberately? Which is quite painful during the contest time?

            Also how do you deal with any runtime error caused? As many times it don't give the outputs nor show error and looks as the code ran but didn't gave the output.

            • »
              »
              »
              »
              »
              »
              »
              3 years ago, # ^ |
                Vote: I like it 0 Vote: I do not like it

              you can find build snippets on github that runs ur output in cmd , that way the infinite loop just terminates after 3 sec . You can also just build ur cpp file and run it from cmd like me , its much more time efficient . All you have to do is set path in cmd to ur cpp file and use Alt+TAB to switch tabs

            • »
              »
              »
              »
              »
              »
              »
              3 years ago, # ^ |
                Vote: I like it 0 Vote: I do not like it

              Just go in task manager and stop file execution from there.

              • »
                »
                »
                »
                »
                »
                »
                »
                3 years ago, # ^ |
                Rev. 2   Vote: I like it 0 Vote: I do not like it

                C++ Sublime Text Build for Windows
                https://pastebin.com/raw/6GRXn2yQ

                How to use it?

                1. Sublime => Tools => Build System => New Build System
                2. Copy paste this code into .sublime-build file
                3. Save it as C++_Terminal.sublime-build
                4. Select Sublime => Tools => Build System => C++_Terminal.sublime-build
                5. Open .cpp file write some code
                6. ctrl + b to run your code
»
9 years ago, # |
  Vote: I like it +11 Vote: I do not like it

I use dev C because it is trashy. that way i could show everybody my pure programmings skills :D

  • »
    »
    9 years ago, # ^ |
      Vote: I like it +83 Vote: I do not like it

    Just wrote a contest on dev C today. It's shit. Do not write a contest on dev C.

    • »
      »
      »
      9 years ago, # ^ |
        Vote: I like it 0 Vote: I do not like it

      I had to to an on location contest using dev C++. I understood what you meant :-)

      Honestly, on Windows, Codeblocks is enough and really bullet-proof. I personally use freopen to use I/O files if I really need to, otherwise the console provided by Codeblocks is usually enough.

      • »
        »
        »
        »
        6 years ago, # ^ |
          Vote: I like it 0 Vote: I do not like it

        Why auto does not work in codeblocks ?

        • »
          »
          »
          »
          »
          6 years ago, # ^ |
            Vote: I like it +1 Vote: I do not like it

          Maybe you haven't activated the flag to use c++11 or c++14. Go to Settings->compiler->compiler flags and check the c++11 one.

          • »
            »
            »
            »
            »
            »
            6 years ago, # ^ |
            Rev. 2   Vote: I like it 0 Vote: I do not like it

            Thank you .........I did the same ...... now it's working.

  • »
    »
    7 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    I also love to use Dev C, because it loads very fast, unlike eclipse or visual studio.

  • »
    »
    7 years ago, # ^ |
      Vote: I like it +10 Vote: I do not like it

    But now you don't :)

  • »
    »
    6 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    Am I the only one who is too lazy to get used to another IDE so they ended up tied with a "trashy" IDE that I were first introduced? :/

  • »
    »
    5 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    hahahahaha Dev C++ sucks :D

  • »
    »
    3 years ago, # ^ |
      Vote: I like it +1 Vote: I do not like it

    I use devc++ because other IDEs are too complicated for me ;_;

»
9 years ago, # |
  Vote: I like it +26 Vote: I do not like it

I mostly use Codeblocks 13.12. I love it. It autocompletes me. Sometimes I use Gedit or Sublime Text and I compile my sources using the linux terminal.

»
9 years ago, # |
  Vote: I like it +10 Vote: I do not like it

I use Far Manager because it is very smart and it is very easy to configure files with Far.

»
9 years ago, # |
  Vote: I like it +9 Vote: I do not like it

I like Sublime Text. I don't need much in an IDE, though — so I use it mostly because it looks good :D

  • »
    »
    9 years ago, # ^ |
      Vote: I like it +1 Vote: I do not like it

    do you use it compiling separately in terminal ?

    • »
      »
      »
      9 years ago, # ^ |
        Vote: I like it +2 Vote: I do not like it

      Yes.

      • »
        »
        »
        »
        9 years ago, # ^ |
          Vote: I like it 0 Vote: I do not like it

        you should use Sublime Input, if you put your stdin in a comment, sublime input package will build the cpp file and then run it on your given stdin.. https://packagecontrol.io/packages/Sublime%20Input

        • »
          »
          »
          »
          »
          9 years ago, # ^ |
            Vote: I like it 0 Vote: I do not like it

          You know, if I put the stdin in a separate file, and then press Alt+Tab+(Up+Up+Enter)x2 (about 1-2 seconds), the same will happen and there's no need to rely on packages that I may or may not have access to.

    • »
      »
      »
      9 years ago, # ^ |
        Vote: I like it +8 Vote: I do not like it

      Or you can do Ctrl/Cmd + B if it's just one file. You can also set it up for using the makefiles.

      • »
        »
        »
        »
        9 years ago, # ^ |
          Vote: I like it +11 Vote: I do not like it

        Ctrl+B is pretty nice (vs compiling in terminal). You get automatic scrolling to any line that has a compiler error (which most IDEs have, but terminal doesn't), and you can customize flags so you don't have to remember what to type in the terminal all the time. I only use -O2 --std=c++11 -Wall -Wl,--stack but of course you can go as crazy as you want.

    • »
      »
      »
      7 years ago, # ^ |
        Vote: I like it 0 Vote: I do not like it

      I use SublimeText with this —

      #ifndef ONLINE_JUDGE
           freopen("in", "r", stdin);
      #endif
      

      And also customized the Build Script to have output in the sublime shell :)

      No need to run in separate terminal. And also this works faster than any method, in code testing. Just press Ctrl + B and you have the output :)

      • »
        »
        »
        »
        6 years ago, # ^ |
          Vote: I like it 0 Vote: I do not like it

        Can you tell me how you have customized the Build Script? Also build is taking too long for c++11...

        • »
          »
          »
          »
          »
          4 years ago, # ^ |
            Vote: I like it 0 Vote: I do not like it

          You can try this

          • »
            »
            »
            »
            »
            »
            4 years ago, # ^ |
              Vote: I like it +1 Vote: I do not like it

            Hey I am also using sublime text 3 with this setup using a txt file as output but it's very slow like the best is 5 sec , the worst is 35 sec and avg might be 15 secs in displaying the ouput. Can you suggest how can i speed it up.

      • »
        »
        »
        »
        4 years ago, # ^ |
          Vote: I like it 0 Vote: I do not like it

        Can You share your sublime text Build Script?!

      • »
        »
        »
        »
        4 years ago, # ^ |
          Vote: I like it 0 Vote: I do not like it

        Can you share your custom Build Script ?

        • »
          »
          »
          »
          »
          4 years ago, # ^ |
            Vote: I like it 0 Vote: I do not like it

          follow the link i mentioned above

  • »
    »
    9 years ago, # ^ |
      Vote: I like it +1 Vote: I do not like it

    What OS do you use for programming?

  • »
    »
    4 years ago, # ^ |
      Vote: I like it -10 Vote: I do not like it

    auto keyword not working :(

»
9 years ago, # |
Rev. 2   Vote: I like it 0 Vote: I do not like it

[deleted]

»
9 years ago, # |
  Vote: I like it -7 Vote: I do not like it

I use gedit :P

»
9 years ago, # |
Rev. 2   Vote: I like it +20 Vote: I do not like it

Hi

I use Emacs because it has some good property.

  • »
    »
    7 years ago, # ^ |
      Vote: I like it +16 Vote: I do not like it

    That's a good operating system, but I prefer Ubuntu. I use Sublime Text with terminal to compile, and I use < and > to redirect input and output from and to files.

»
9 years ago, # |
  Vote: I like it +23 Vote: I do not like it

Vim mostly.Because I don't know how to get out of it.

  • »
    »
    9 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    I want to use VIM , its feature is too good !

»
9 years ago, # |
  Vote: I like it 0 Vote: I do not like it

I see sometime , somebody works in black interface like TC , which interface do u like ? (black, white or others )

»
9 years ago, # |
  Vote: I like it +3 Vote: I do not like it

I use Turbo C++. Life's pretty rough.

»
9 years ago, # |
  Vote: I like it 0 Vote: I do not like it

I use VIM everywhere because its very easy to use (for me) and has very little or no distractions. I have a few shortcuts set up for programming contests for compiling. There is a plugin called syntastic which is very useful for syntax checking and highlighting for C++.

»
9 years ago, # |
Rev. 2   Vote: I like it +1 Vote: I do not like it

Sublime Text.

I split the window in 4 parts — code (on the left), compilation output (just below the code), problem input and problem output (both on the right).

I find snippets are very helpful to automate common tasks, and it provided basic auto-complete that helps to avoid typos. It's easy to compile/execute from within the editor using CTRL + SHIFT + B, and jump to compilation errors from the compilation output.

One of the manual things that I haven't got around automating is when the process gets stuck and needs to be killed. Then I find the process id manually and kill it in the terminal.

»
9 years ago, # |
  Vote: I like it 0 Vote: I do not like it

I use Codeblocks to write competitive programming codes, because it's used in most programming contests and it's fast, open-source. I use VS2013 and Eclipse to write my homework, because they're more convenient.

»
9 years ago, # |
  Vote: I like it +5 Vote: I do not like it

I use codeblocks because it's easy to use.

»
9 years ago, # |
  Vote: I like it +8 Vote: I do not like it

I think this topic is very well covered here.

»
9 years ago, # |
  Vote: I like it 0 Vote: I do not like it

My heart belongs to MS Visual Studio

»
9 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Intellij Idea. Most of people who use java use it.

»
9 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Screw you all, real men wrote codes with notepad + cmd!! who needs IDE anyway for competitive programming :p

»
9 years ago, # |
  Vote: I like it 0 Vote: I do not like it

I use Ubuntu SDK... Because it's also very smart.

Ohhellotextest

»
9 years ago, # |
Rev. 2   Vote: I like it 0 Vote: I do not like it

Personally, I use GNU Emacs.( http://xkcd.com/378/ :D)

The main reason is that it has easy commands for almost everything -- basic cursor movement,deleting/inserting text,buffer creation/movement/deletion etc. It also has quite a lot of modes(c++ mode, java mode, fundamental mode), which make it easy to use for all languages. It has also got a pretty easy to understand tutorial, which explains the basics.

»
9 years ago, # |
Rev. 2   Vote: I like it 0 Vote: I do not like it

I have a terrible experience till now :D
I have almost tried every ide and every text editor and had used visual studio if i had an ide mood and far manager if i'm in an editor mood xD ( they are two powerful as they are :) ).
now i've switched to mac os since about 4 days and till now i can't determine which editor/ide i would use.

»
8 years ago, # |
Rev. 2   Vote: I like it +5 Vote: I do not like it

I use Vim in Terminal.

»
8 years ago, # |
  Vote: I like it 0 Vote: I do not like it

I love to use Sublime text <3

»
8 years ago, # |
  Vote: I like it -7 Vote: I do not like it

I love write program in C# and VS 2013 IDE.

  • »
    »
    8 years ago, # ^ |
    Rev. 3   Vote: I like it +16 Vote: I do not like it

    Once I decided to use Visual Studio for a CF round so I started it a few minutes before the start of the contest and it was ready to use 15 minutes after the contest had already finished. Since then I have never tried to start it again.

    • »
      »
      »
      8 years ago, # ^ |
        Vote: I like it 0 Vote: I do not like it

      It's absolutely unusual, unless in first run.

      Visual Studio is slow in first run. it take several minutes to load

»
7 years ago, # |
  Vote: I like it +21 Vote: I do not like it

Vim is the only option.

»
7 years ago, # |
Rev. 2   Vote: I like it +6 Vote: I do not like it

I use CLion on Arch Linux for easy compilation, nice autocomplete, a nice debugger, live templates, and its built-in static analysis.

Maybe I depend too much on tooling but who cares ¯\_(ツ)_/¯

»
7 years ago, # |
Rev. 2   Vote: I like it 0 Vote: I do not like it

I program in Java. I really like IntelliJ. Its debugger is absolutely amazing! However, I normally use BlueJ, because I have a shit PC with horrible RAM and programs on IntelliJ take forever to compile.

  • »
    »
    3 years ago, # ^ |
      Vote: I like it +1 Vote: I do not like it

    Bro, ditch IntelliJ. It just sucks on low-end PCs. BlueJ is also crap. Try Eclipse. It is almost like IntelliJ but yeah, it's hell better than BlueJ and runs on my shit machine like an aeroplane.

»
7 years ago, # |
  Vote: I like it +5 Vote: I do not like it

I use notepad++ and g++(cygwin) to play contest.

»
7 years ago, # |
  Vote: I like it 0 Vote: I do not like it

I use Sublime Text . I generally write codes in java . And if one has good control over his/her language the editor provides a pretty decent platform to compile , segregate input/output files in tabs and also decent styling.

  • »
    »
    7 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    > java
    > sublime

    LOL, why not IDEA?

»
7 years ago, # |
  Vote: I like it 0 Vote: I do not like it

IDEONE lol

»
7 years ago, # |
  Vote: I like it +3 Vote: I do not like it

I Use Atom... it is cool enough :)

  • »
    »
    7 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    I have also used it, then I switched to sublime text 3. I think sublime is better. If visual assist was free, then I guess visual studio would be better.

»
7 years ago, # |
  Vote: I like it 0 Vote: I do not like it

I use VS when my labtop being with me
when using others computers , i use cpp.sh or Codeforces tester.
or if the computer contain gcc then i use any small editor

I like to use JetBrains too

»
7 years ago, # |
  Vote: I like it 0 Vote: I do not like it

I use Programmers Notepad (http://www.pnotepad.org/) and I am quite happy with it. It is lightweight, has no distraction, can be downloaded as a portable version, can be easily configured for competitive programming Here is how to set it up to compile your C++ programs => http://algorithm4fun.blogspot.be/2015/08/compiling-c-programs-on-programmers.html

»
7 years ago, # |
  Vote: I like it +1 Vote: I do not like it

TextWrangler, with Terminal (macOS Sierra). Sometimes IDLE, as I may switch from Python to C++ and vice versa.

When I am at school, I use gedit, with Terminal (Linux Debian). I wish they had SublimeText on their computers, though.

»
7 years ago, # |
  Vote: I like it +1 Vote: I do not like it

I have used KDevelop since I switch to linux and I have some nostalgic relationship to that IDE :D And yes, I like its semantic analysis and the way of coloring the variables — each variable has a different color :D

»
7 years ago, # |
  Vote: I like it 0 Vote: I do not like it

For competitive programming I mostly use Codeblocks because it's easy to use and sometimes Vim. Eclipse for Java/Python.

»
7 years ago, # |
  Vote: I like it +54 Vote: I do not like it

Mircrosoft Word

»
7 years ago, # |
  Vote: I like it 0 Vote: I do not like it

I love to use Code::blocks. It's easy to use and I love the colors the keywords in the editor.

»
7 years ago, # |
  Vote: I like it +5 Vote: I do not like it

VIM <3, I can not go out either :,'v

»
7 years ago, # |
  Vote: I like it +8 Vote: I do not like it

Geany, simple interface, and very lightweight. But lately I start shifting to Visual Studio Code, simple and clean interface, and the integrated terminal is very useful.

»
7 years ago, # |
  Vote: I like it +5 Vote: I do not like it

This blog is asking what IDE do you use not if you write in text editor and compile in terminal. Anyway mentioning that here or even doing that in your life won't get you laid.

»
7 years ago, # |
Rev. 2   Vote: I like it +3 Vote: I do not like it

I love IntelliJ IDEA Community Edition. I code using Java and I think it is the best IDE for Java Coders. The reasons are:

  • Classy interface
  • Option for git integration
  • Option for gist support(I need it as I do blogging)
  • CHelper extension support for automatic parsing of test cases & testing(OMG thing. Go to this link to learn more about this extension. I'm sure you will love it)
  • Topcoder plugin support(Another OMG feature)
»
6 years ago, # |
Rev. 3   Vote: I like it 0 Vote: I do not like it

I code in Java. I usually use BlueJ, but I have recently started using IntelliJ IDEA. I like it better. It feels better.

»
6 years ago, # |
  Vote: I like it +1 Vote: I do not like it

Hi! I've been working on a lightweight ide for a while. The first release is here, keeping in mind what I really need during the contest. https://github.com/svr8/Desk Would be happy to hear a feedback.

  • »
    »
    6 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    Is It For Java Only ? Or I can write on it C++ ?

    • »
      »
      »
      6 years ago, # ^ |
      Rev. 2   Vote: I like it 0 Vote: I do not like it

      It supports C++(python and many more) syntax colors. In order to compile/execute, you need to know the CMD commands for your language and create a build file(keeping in mind that you are executing in cmd being at a location where application was installed).

      • »
        »
        »
        »
        6 years ago, # ^ |
          Vote: I like it 0 Vote: I do not like it

        Do you Have Video or Explanation ?

        I am not good in such things

        • »
          »
          »
          »
          »
          6 years ago, # ^ |
            Vote: I like it 0 Vote: I do not like it

          Alright, will work on it. Also, I'll roll out a new update soon. It will automatically detect Java, Python and C++ so you don't have to create build files for them.

          • »
            »
            »
            »
            »
            »
            6 years ago, # ^ |
              Vote: I like it 0 Vote: I do not like it

            Okay , I'm Waiting For the Update :)

            When you publish it Please tell me

»
6 years ago, # |
  Vote: I like it +17 Vote: I do not like it

Notepad. It makes me a pro

»
6 years ago, # |
  Vote: I like it +3 Vote: I do not like it

Sublime Text 3. Light & cool.

»
6 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Sublime Text 3 with vintage(vim mode) on :D

»
6 years ago, # |
  Vote: I like it -10 Vote: I do not like it

Easy way to detect people with IQ < 90

»
6 years ago, # |
  Vote: I like it +1 Vote: I do not like it

not ide but my favorite program to code is visual studio code :D

»
6 years ago, # |
  Vote: I like it 0 Vote: I do not like it

I think, it's better to use editor.

»
6 years ago, # |
  Vote: I like it 0 Vote: I do not like it

I use vim on cygwin terminal. Once you get used to the shortcuts it's hard to back to editors that force you to use a mouse. It's very customizable, and I have my own scripts to quickly compile/run/debug etc.

One small nice thing about cygwin/unix like environment is you can redirect input using "<" to read from a file, much more convenient than using freopen and having to comment it out when you submit.

»
6 years ago, # |
Rev. 2   Vote: I like it 0 Vote: I do not like it

I am using Codeblocks. It's Fast and easy to use

»
5 years ago, # |
  Vote: I like it +5 Vote: I do not like it

i write down my code on paper and use ML to transform it into source code in computer

»
4 years ago, # |
  Vote: I like it +3 Vote: I do not like it

my favorite tools is sublime text and c++ mingw64 from codeblocks, sublime text is a cool and powerfull code editor. You can config color, snipet, template, build system, open terminal inside, separate windows view in 1 sublime text, think sublime text like linux, you can edit any thing you want. That make me code faster.

»
4 years ago, # |
  Vote: I like it 0 Vote: I do not like it

I usually use codeforces' custom invocation

»
4 years ago, # |
  Vote: I like it 0 Vote: I do not like it

I use sublime in windows 10 but it takes much time for running the code. Can anyone help me. What i should do, like should i change my build system or anything else?

  • »
    »
    4 years ago, # ^ |
    Rev. 2   Vote: I like it +1 Vote: I do not like it

    You can try CP Editor, it can run the code on test cases in one click/shortcut.

  • »
    »
    4 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    This is my only reason for switching to the more slower Visual Studio Code. My build times in Sublime Text are like 4-5 seconds, seems a lot of time for me :(

»
4 years ago, # |
  Vote: I like it 0 Vote: I do not like it

I do not use IDEs. I use Atom and several plugins.

»
4 years ago, # |
  Vote: I like it +20 Vote: I do not like it

I read it to google assistant, it writes

»
4 years ago, # |
  Vote: I like it +1 Vote: I do not like it

I use Vim. It is just like having the master control on the Omnitrix. It becomes one with the body and soul and frees us from the bondage of the mouse (if used with i3wm window tiler).

»
4 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Easy to use tool to download, run tests and problems, and commit solutions. CF-Tool greatly integrates with vim in a command line based environment.

»
4 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Atom, without regret

»
4 years ago, # |
  Vote: I like it +1 Vote: I do not like it

Sublime text is classy and smooth :)

»
4 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Vscode as I have 16 gigs of ram on my laptop and I learn more than just competitive programming.

»
4 years ago, # |
Rev. 2   Vote: I like it -9 Vote: I do not like it

cp editor

»
4 years ago, # |
Rev. 2   Vote: I like it 0 Vote: I do not like it

I tried codeblocks, sublime text, Clion and Xcode. After all the trial and error I found Xcode pretty good over all other IDEs.

»
4 years ago, # |
  Vote: I like it +8 Vote: I do not like it

Vim is the best code editor ever invented. End of discussion.

»
4 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Am I the only one who uses CLion(by JetBrains)? I personally love CLion because of its easy to use Interface and Dark mode.

  • »
    »
    4 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    I use it, it's really good.

    But sometimes it can't work if I input a large example input.

    • »
      »
      »
      4 years ago, # ^ |
        Vote: I like it 0 Vote: I do not like it

      You can input large test cases using an input file. Similar to what we did in FB HackerCup.

»
4 years ago, # |
  Vote: I like it 0 Vote: I do not like it

I was using VS Code but recently I have switched to Sublime text3. VS code was taking too much time to compile. Sublime is working fine for me so far. If you have any idea about how to compile code faster on VS code, Please let me know.

  • »
    »
    4 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    compile and run in terminal. Don't compile a file every time you run it, only compile it when you made a change. precompile stdc++.h.

    • »
      »
      »
      4 years ago, # ^ |
        Vote: I like it 0 Vote: I do not like it

      How does precompiling stdc++.h help? Isn't it all templated code, hence generated (and compiled and linked) only when used?

»
4 years ago, # |
  Vote: I like it 0 Vote: I do not like it

I use different IDEs for different things. For CP I just use Sublime Text.

»
4 years ago, # |
  Vote: I like it 0 Vote: I do not like it

I use VSCode in training but I use Dev C++ in codeforces contests because it's fast and simple.

»
4 years ago, # |
  Vote: I like it -8 Vote: I do not like it

Why nobody here uses VS Code like a nomral person ??

  • »
    »
    3 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    I use it along with an extension called ACMX.

»
3 years ago, # |
  Vote: I like it +3 Vote: I do not like it

Google docs

»
2 years ago, # |
  Vote: I like it +7 Vote: I do not like it

codeblocks