Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~1K People Reached
Favorite Tags
Member Avatar for the_one2003a

I have a ATI Radeon 9200se VGA and I have connected my TV to its output and selected "Extend my windows desktop on to this monitor" for the second recognized monitor (TV) now my question is that how can I keep the screen playing (in the TV cause it become …

Member Avatar for the_one2003a
0
141
Member Avatar for the_one2003a

Hi I created a class,simplified class is like below: #include<iostream.h> class cCat { public: //Constructors and Destructors cCat(); ~cCat(); //Accessor Function int & cCat::GetAge() const{ return *itsAge;} //Convertion operator cCat(int); // cCat object =int x private: int *itsAge; }; cCat::cCat() { itsAge = new int; *itsAge= 20; } cCat::~cCat() { …

Member Avatar for the_one2003a
0
131
Member Avatar for WhataNerd

This is just a general C++ question. For someone who has been working with C++ for a while now, my question is what are the best articles-books-anythings to read or do when starting out using C++ . I have a new found passion for programming, and i just want to …

Member Avatar for WhataNerd
0
151
Member Avatar for the_one2003a

Hi I tried to use a pointer to point to address of an enumurated constant but this made a compile error. so can can I know address of an enumurated constant and use it with a pointer? down is a sample code: #include<iostream.h> main() { enum Date {mainX=1,mainY}; const int …

Member Avatar for the_one2003a
0
679
Member Avatar for the_one2003a

Hi I made a class that has a public integer pointer and I use this pointer in main like code below: ([I]Just a sample code,I know about memory leaks and other related bugs,just a sample[/I]) #include<iostream.h> class Cat { public: int *Pointer; }; main() { Cat *pCat; pCat=new Cat; pCat->Pointer …

Member Avatar for the_one2003a
0
134