Search Results

6
votes
7answers
722 views

Do you recommend Native C++ to C++\CLI shift?

I have been working as a native C++ programmer for last few years. Now we are starting a new project from the scratch. So what is your thoughts on shifting to C++\CLI at the cost of loosing platfo …
3
votes
9answers
2k views

Best UI development framework on windows?

I have been developing UI in Win32/MFC, but developing cool UI in Win32/MFC is very difficult and time consuming. Please note, I always want my code to be platform independent, So I prefer programm …
3
votes
14answers
3k views

Open source random number generation algorithm in C++?

I need to generate random numbers in the range 1 - 10000 continuously with out duplication. Any recommendations? Description: we are building a new version for our application, which maint …
0
votes

Learning C++ Templates

"The C++ Programming language" by Bjarne Stroustrop …
1
vote

What technologies do C++ programmers need to know?

In no specific order COM/ATL DirectX MFC & Win32 STL GDI BOOST …
1
vote

Best C++ Resource

Its difficult to name one here, I would prefer to have following in my work table. "The C++ Programming language" - Bjarne Stroustrup "C++ Primer" - Stanley B. Lippman …
2
votes

Improving the quality of code?

Reading good programming books Learning from other's code - Open source projects are the best place to start Read good blogs and forums regularly - Sutter mill, Coding Horro …
16
votes

Where can I learn more about C++0x?

Herb Sutter's blog, He posts new developments in C++0x and links to detailed references …
4
votes

What do you miss when you have to use C instead of C++?

Classes and OOP Overloading Virtual Functions (We can achieve this, but lot more effort required) …