Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
~1K People Reached
Favorite Tags
Member Avatar for imBaCodes
Member Avatar for major_tom3

Since I know you're actively promoting your forum, you might care to make it a little easier to use. To that end, may I make a few suggestions: 1. Software developers are keyboard-friendly. When we've entered our log-in and password, we don't want to reach for the mouse to click …

Member Avatar for Dani
1
191
Member Avatar for chaienbungbu

I've done an example of 'template specialization'. Here is the code: [code] // template specialization #include <iostream> using namespace std; // class template: template <class T> class mycontainer { private: T element; public: // only prototype mycontainer (T); T increase (); }; // class method definition template <class T> mycontainer<T> …

Member Avatar for major_tom3
0
229