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
~2K People Reached
Favorite Forums
Favorite Tags
c++ x 6
c x 1

5 Posted Topics

Member Avatar for NosKills

I have somewhat of a weird problem which probably is caused by my compiler, but when I include <fstream> some of it's members cannot be found back in the std namespace. When i use <fstream.h> these methods are availabe. The methods are ios::nocreate and ios::noreplace, anyone who has had the …

Member Avatar for NosKills
0
332
Member Avatar for fluidDelusions

[QUOTE=fluidDelusions] By the way, what is the difference between [code]Dog : virtual public Animal[/code] and [code]Dog : public Animal[/code] ?[/QUOTE] The difference is that you choose to inhertit an entire class virtual or not. This may come in handy when you face a dreaded diamond construction.

Member Avatar for NosKills
0
277
Member Avatar for aripaka

[QUOTE=aripaka] I would like to know what is the Dev C++ by Bloodshed? In what way is this different from ordinary C++? I read somewhere that this is used to program Windows applications along with the C++ apps. So, is there any tutorial available on web to learn windows programming …

Member Avatar for Dave Sinkula
0
285
Member Avatar for zenoen

Why so complicated? You want to create the rolling of a dice? [CODE] #include <iostream> #include <cstdlib> #include <conio.h> int RandomInteger; int Choice; int ProgramRun = 0; int main() { do { std::cout << "What would you like to do : \n"; std::cout << "\n"; std::cout << "#1 Roll the …

Member Avatar for zenoen
0
302
Member Avatar for MaaleaRogers

[CODE] #include <iostream> void Function1() { std::cout << "Function1\n"; } void Function2(void aFunction()) { aFunction(); } // make a param that describes the function the will be given // as a param (return type, identifier, paramtypes) int main() { Function1(); std::cout << "\n"; Function2(Function1); // Function1 is a legal param, …

Member Avatar for MaaleaRogers
0
411

The End.