Rating changes for last rounds are temporarily rolled back. They will be returned soon. ×

joe69's blog

By joe69, history, 4 years ago, In English

Do you guys use a debugger provided by an ide or debug using print statements only

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

| Write comment?
»
4 years ago, # |
Rev. 2   Vote: I like it +3 Vote: I do not like it

I don't know about others but what i do is -->

#define deb(x) cout << #x << "=" << x << endl;

and then use it like deb(variable) I don't use debugger (even don't know how it is used);

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

I use debuggers a lot. I think most people don't for some reason.

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

I use the codeblocks's debugger a lot. I wonder how can some people doing CP without debuggers Orz :))