Forum: C++ Jun 25th, 2009 |
| Replies: 13 Views: 620 You know all of you are getting work-up over nothing, right?
If you're this easy to instigate, give me you're phone numbers so I can use you in my next angry mindless mob. |
Forum: C++ Apr 23rd, 2009 |
| Replies: 34 Views: 2,715 You needn't worry. This code is so extraneous and beyond broken, that it'll never get off the ground. |
Forum: C++ Jan 28th, 2009 |
| Replies: 4 Views: 1,264 I should probably tell you that your compiler probably turned this into:
for (i=0;i<4000000000;i++)
cc = 2.0+i;
or even just did the math before hand(depending on options, and compiler).
It... |
Forum: C++ Jan 26th, 2009 |
| Replies: 5 Views: 378 Google, "mean," and "deviation." So easy they teach it to second graders and third graders. |
Forum: C++ Jan 19th, 2009 |
| Replies: 3 Views: 330 Try this link:
http://www.cplusplus.com/doc/tutorial/dynamic.html
Then read all of the other tutorials, refer to their references or try Google. |
Forum: C++ Jan 19th, 2009 |
| Replies: 14 Views: 624 Yes, the "include guard."
#ifndef HeaderName_H
#define HeaderName_H
/*header declarations*/
#endif |
Forum: C++ Jan 16th, 2009 |
| Replies: 6 Views: 430 Then he/she would learn nothing more than how to use iterators. |
Forum: C++ Jan 13th, 2009 |
| Replies: 4 Views: 326 http://www.relisoft.com/win32/index.htm
Create a window, draw a graph. |
Forum: C++ Dec 31st, 2008 |
| Replies: 7 Views: 4,321 Well it'll be three years old soon.
English is a rule, too. |
Forum: C++ Nov 28th, 2008 |
| Replies: 6 Views: 493 Get the input as a string, then check if it's a number or not. |
Forum: C++ Nov 17th, 2008 |
| Replies: 6 Views: 1,284 Use a loop that decreases its-self.
for(int i = numNames; i > 0; i--) |
Forum: C++ Nov 13th, 2008 |
| Replies: 47 Views: 66,999 Optimizing Software in C++
http://www.agner.org/optimize/optimizing_cpp.pdf
Agner has a few other manuals, on his site too. |