8h
answered Working in debugging mode
9h
comment Visual Studio - How can I see cout output in a non-console application?
@BenjaminLindley if I write the exact same question without the comment, it'd get closed as a duplicate of this, and my question wouldn't have been answered.
9h
comment Visual Studio - How can I see cout output in a non-console application?
"Where can I find cout output if I am writing a non-console information ?" this doesn't answer the question.
12h
answered Instantiating an object in a namespace with a constructor whose defined in the same namespace. C++
14h
comment How to use the unique function inside a class?
@injoy you're probably not implementing a strict ordering comparison.
15h
answered How to use the unique function inside a class?
16h
answered c++ pointer always on the same address even if not deleted
16h
comment Default constructor of class with pointer inside
Look for "C++ rule of three".
20h
comment Function pointer runs faster than inline function. Why?
I doubt that...
1d
comment Template syntax error
Is all this code really necessary? Can't you narrow it down?
1d
comment What is the name for a program that can find a solution in a finite (but inordinately large) amount of time?
Actually, nowadays you can easily brute-force crack a 10-digit password with no other restraints (time-outs or locking after a number of fails). But I get what you're asking. It's, as Matt said, computationally impractical.
1d
comment Error: request for member … in … which is of non-class type
@user2407727 you should accept this answer if you found it useful.
1d
answered Defining member functions inside the class' definition
2d
answered Memory management scope in C/C++
2d
awarded  if-statement
2d
comment Vector and []-operator overloading
@user1170330 if you don't write it at all, it'll do the same thing.
2d
revised What is the best structure to find which AABB boxes in a dynamic set collide with an arbitrary AABB box?
edited tags
2d
comment Vector and []-operator overloading
@user1170330 I didn't say that. You can have int& operator[](int idx) { return std::vector<int>::operator[](idx); }. It's just not recommended.
2d
answered Vector and []-operator overloading
2d
answered Why is the else statement still printing after the if statement is satisfied?