(New page: == Summing Numbers == Some text will go here. here is a link to [http://en.wikipedia.org/wiki/Summation wikipedia] <source lang="cpp"> class foo { }; int main() { for(int i = 0; i <...) |
(No difference)
|
Revision as of 02:33, 28 August 2009
Summing Numbers
Some text will go here.
here is a link to wikipedia
class foo { }; int main() { for(int i = 0; i < 100; ++i) { prinf("%d", i); } }