Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
70% Quality Score
Upvotes Received
2
Posts with Upvotes
1
Upvoting Members
2
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
~4K People Reached
Favorite Tags
Member Avatar for ProgrammingGeek

How would I do this [CODE] class test { public: int* num; }; int main() { test *d = new test; d->num = new int; d->*num = 3; cout << d->*num; } [/CODE]

Member Avatar for ProgrammingGeek
0
132
Member Avatar for sergent
Member Avatar for cwarn23

I thought I would start this topic to see what everybody is working on. So post what is project of the day and many posts to come. As for me. I am working on making it to the refrigerator after a few lines of code.

Member Avatar for pseudorandom21
0
393
Member Avatar for WolfShield

C++ was once the King of programming. It would crush any competitor! But, now it seems that C++ is getting less popular. New programmers are rushing to easier to learn, higher level, programming languages (e.g. Java). And with Microsoft coming out with C# which is gaining popularity (even though it …

Member Avatar for Netcode
0
1K
Member Avatar for MooGeek
Member Avatar for Netcode
2
155
Member Avatar for mrnutty

Start thinking about the things you use to do before you ever knew about programming and now think about how you changed that as a result of programming? What was it? As an example, I always use to start numbering from 1, but after taking my first programming course and …

Member Avatar for chiiqui
0
446
Member Avatar for indru

HEY...I M INTERESTED IN C...& WANT 2 MAKE MY FULLY CAREER IN C..PROG.LANG...& there is no other choice!I M currently DOING MCA. SO...SUGGEST ME...& IS THERE ANY CERTIFICATION COURSE IN IT...TO CHECK MY COMMAND ON IT....PLEASE...PLEASE....

Member Avatar for Narue
-1
230
Member Avatar for Um num num

heyy pplz I'm new to programming and C just now decided to set myself a project and chose to make a simple roulette game so far i got a basic idea but would require too much code and am sure there must be a simpler way.. if anyone could help …

Member Avatar for ProgrammingGeek
0
155
Member Avatar for NetJunkie

Before I get started with this question I would like to point out that this is a small app I am creating to not only learn more C++ coding but also to choose who drives the fifth day in my carpool group for college. I am creating an application in …

Member Avatar for mrnutty
0
192
Member Avatar for Desh2350

Okay, so here's my set of problems: I need a simple error check, so that if the user enters the wrong type of character, he/she will be notified and allowed to re-enter a new value. Secondly, I need some sort of loop that allows the user, after having running the …

Member Avatar for Ketsuekiame
0
249
Member Avatar for ProgrammingGeek

When making overloaded template function is there a difference between template<> or template<type>. For example is there a difference between [CODE] template <class T> void dispm(T array) { cout << "called template<class T> void dispm(string array)"; } template<class T> void dispm(string array) { cout << "called template<class T> void dispm(string …

Member Avatar for mike_2000_17
0
167