- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
5 Posted Topics
Re: You start from an idea for an application (desktop, mobile, arduino... whatever). It would be best if it is your own idea, but you can also find plenty of "wishlists" on the web. When you have motivation for making this idea a reality - start exploring and asking question, find … | |
Re: which programming language do you prefer? in c++ I would use std::vector to keep the numbers, and sum them when breaking from the while loop. #include <vector> int ccmain() { std::vector<int> all_goals; std::vector<int> all_assists; int goals = 0; int assists = 0; while (goals >= 0 && assists >= 0) … | |
Re: strtok would be an option. strtok - Split string into tokens | |
Re: the method f() is called, but it's "this" pointer is undefined because ptr was not initialized. The function call to f() is determined at compile time according to the type X. | |
Hi, I have a C++ code running OpenGL GUI (CEGUI), I need to wrap this window inside a C# Application. I guess I will compile the C++ as a dll, and add entry points for the C# app. What is the preffered way to do this? I thought of these … |
The End.