Forum: IT Professionals' Lounge Dec 11th, 2006 |
| Replies: 21 Views: 5,376 N-o-o-o. Assembly language is probably the last language you will learn. It also happens to be the least forgiving and least user-friendly. Happiness ;) It is best used in low level, OS base type... |
Forum: IT Professionals' Lounge Dec 10th, 2006 |
| Replies: 21 Views: 5,376 If you like C or C++, look at the recommended books in that forum.
Another compiler: Code::Blocks. |
Forum: IT Professionals' Lounge Dec 3rd, 2006 |
| Replies: 3 Views: 1,440 Thanks for the laugh Dani :) |
Forum: IT Professionals' Lounge Nov 23rd, 2006 |
| Replies: 4 Views: 1,822 I feel that only using something like the below best what was included in the file:using std::cout;
using std::vector;
//etc... |
Forum: IT Professionals' Lounge Nov 23rd, 2006 |
| Replies: 16 Views: 3,513 It all depends on your money. I like the more expensive one, but that's me. |
Forum: IT Professionals' Lounge Nov 20th, 2006 |
| Replies: 4 Views: 1,822 Personaly I individualy declare the std members I'm using (std::cout, std::vector, etc) for clarity in what I'm doing. I like including only what I'm using, rather than just dumping all of std into... |