No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
11 Posted Topics
Re: 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 … | |
Re: That's EASY: [Click Here](http://www.daniweb.com/software-development/cpp/threads/70096/c-books) Glad I could help. | |
Re: I was a pirate 25 years ago and boxed a lot. Maybe some older folks might understand what that means. I miss those days :-) | |
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 … | |
Re: 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. | |
Re: 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 … | |
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 … | |
Re: I looked at your site, just for my personal intrest, how much did you payed for it ? | |
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 ?? … | |
Re: 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 … | |
Re: #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 … |
The End.