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
~13.0K People Reached
Favorite Tags

11 Posted Topics

Member Avatar for Dave Sinkula

Hi, I'm learning with Bjarne Stroustrup his book 'Programming principles and practice using C++' [Click Here](http://www.amazon.com/Programming-Principles-Practice-Using-C/dp/0321543726/ref=sr_1_1?s=books&ie=UTF8&qid=1337426196&sr=1-1) What I like about it is that he tries to learn you how to write good code '*using*' C++. so instead of only learning you C++ he tries to learn you how to program …

Member Avatar for shahidali6
11
10K
Member Avatar for Sh4dowz

That's EASY: [Click Here](http://www.daniweb.com/software-development/cpp/threads/70096/c-books) Glad I could help.

Member Avatar for mudasar44
0
381
Member Avatar for mrnutty

I was a pirate 25 years ago and boxed a lot. Maybe some older folks might understand what that means. I miss those days :-)

Member Avatar for Reverend Jim
0
686
Member Avatar for sternone

Hi, I only know C++ as a medium level programmer, not a real beginner but absolutely no veteran, I need to learn so much more C++ stuff. I can fairly program small programs in C++ and i really like C++. I also started using some of the new cool C++11 …

Member Avatar for sternone
0
247
Member Avatar for jkon

The 50's.. Doctors smoked because they thought it cleared out the lungs and everybody was drunk @ work because it just looked cool in the office.

Member Avatar for Dani
0
280
Member Avatar for Onlineshade

Ok guys, I'm a newbie too.But that was really easy. The iostream takes care of your cin and cout, there are 3 compile errors given you direct clue that there's a problem with that header include. In fact, that's one of the first things I learned about C++, togheter with …

Member Avatar for mustaffa hasan
0
156
Member Avatar for sternone

Hi, I found this forum with some google searches and I really enjoyed reading some Q&As here. I love C++, I love C++, did I told you yet I love C++ ? I hate C#, I really hate C# !!!!. did I told you yet I hate C# ? I'm …

Member Avatar for Onlineshade
0
363
Member Avatar for tibormarias

I looked at your site, just for my personal intrest, how much did you payed for it ?

Member Avatar for sternone
0
224
Member Avatar for sternone

Hi Geeks, I'm just a newbie but I want to ask you a simple honest question, is it normal that when I code and I want to compile the stuff I wrote I every time slam the F5 or the CTRL-F5 as hard as I can... like EACH TIME ?? …

Member Avatar for sternone
0
240
Member Avatar for Hellblazer.

It takes years and years, and a lot of coding. Start with excercice number 1. And do it again until you can answer and code it from memory. Then go to excercie number 2, code the answer 10 times again if needed until you understand it by head. Then move …

Member Avatar for sternone
0
202
Member Avatar for baby_c

#include <stdio.h> #include <stdlib.h> #include <time.h> int main () { int iSecret, iGuess; /* initialize random seed: */ srand ( time(NULL) ); /* generate secret number: */ iSecret = rand() % 10 + 1; do { printf ("Guess the number (1 to 10): "); scanf ("%d",&iGuess); if (iSecret<iGuess) puts ("The …

Member Avatar for sternone
0
270

The End.