User profile: n4nature

User info
User name:n4nature
Email:n4nature_b@yahoo.com
Name:NT
Location:Florida
Statistical data
Birthdate:1978
Occupation:Programmer
Skills:C
C++
Perl
History
Joined:
Number of posts:245
Latest posts:

Return value for recursive program
Hi, I am writing a recursive program to return two indices of a vector whose values add up to a targ...

Exception when delay loading of binaries fail
Hi, My program (myApp.exe) delay loads a dll (TestDLL.dll). I am doing a negative test, where I del...

Forward declaring class
I see. And if I replace A* with smart pointer to A in Class B, would behavior still be the same? i.e...

Forward declaring class
Hi, Can you tell why forward declaring the class not work in below code? Compiler gives error 'B::a...

Predicate function for deleting vector elements
Hi, vObjects.erase(std::remove_if(vObjects.begin(), vObjects.end(), [](wzSolId) { return wzId =...