Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
1
0 Endorsements
~24.9K People Reached
Favorite Forums
Favorite Tags
c++ x 24
c x 2
type x 1
Member Avatar for Dave Sinkula

With regard to C++ books, I'll just echo the advice here .The following books are recommended; read them in mostly the order listed." Accelerated C++ " Andrew Koenig & Barbara Moo " The C++ Standard Library " Nicolai Josuttis --- a "must have" " Effective C++ ", " More Effective …

Member Avatar for shahidali6
11
10K
Member Avatar for Narue

When you want to remove extraneous characters from an input stream in C++, it's usually because you mixed formatted and unformatted input methods. The formatted method would leave a newline in the stream and the unformatted method would consume it and terminate successfully, but fail completely to do what you …

Member Avatar for Smn
18
13K
Member Avatar for Abhinisha
Member Avatar for Abhinisha
Member Avatar for Vincentas
0
145
Member Avatar for Abhinisha
Member Avatar for hackoman96

is data structure (algorithms )related to mathematics like ) - sets ,matrices ,sequence and series , or logical maths related topics ?? and is there any differnce between data structure and data representation??

Member Avatar for Abhinisha
0
154
Member Avatar for Abhinisha
Member Avatar for kvahanyan
0
87
Member Avatar for Abhinisha
Member Avatar for Abhinisha

what are nested classes? and flush program and poker program .. using a suitable program ..kindly tell me??

Member Avatar for rubberman
0
143
Member Avatar for daino

I'm just wondering what everyone thinks about building from the command line. I've been using Code::blocks with a MinGW compiler but there always seems to be a myriad of problems in building projects. I'm starting to become a little fed up with it's querks though it is probably partially my …

Member Avatar for rubberman
0
251
Member Avatar for Abhinisha

what are member function?? what is the use of :: in them ?? what are static and non static member function??

Member Avatar for MonsieurPointer
0
202
Member Avatar for Abhinisha

in command line argument i am writing argument for the main function as follows int main(int argc,char*argv[]) here argc and argv is cleared to me but why we are using char* with argv... means why we are using * ???

Member Avatar for NathanOliver
0
207
Member Avatar for Abhinisha

i am studying c++... and i have come across the topic constructors.. and in that i am confused between ...basic constructors, copy constructors, dynamic constructors... please explain what are these and also the program in which they can be used...???

Member Avatar for crescendo
-1
190
Member Avatar for Abhinisha
Member Avatar for Abhinisha

#include<iostream.h> class counter { private: int count; public: counter():count(0) { count 1 } }; int main() { counter c1; return 0; } whats wrong in this program i am not able to know?

Member Avatar for Lucaci Andrew
0
121
Member Avatar for liliafan

Hi I am attempting to pass a reference to an object from one function to another, is this even possible, if so what is the syntax this is an example of what I want: [code] class SomeClass { public: int a = 100; }; void second_function(SomeClass & ref_to_classobj) { std::cout …

Member Avatar for Lucaci Andrew
0
203