SkyIsland wrote:[color=blue]
> I'm new to c++ programming. Can anyone give me some code examples on
> how to do somestuff, or tips any info would be nice...[/color]
Google for the online book "Thinking in C++" by Bruce Eckel, which is
availible free and legally on the author's website.
"SkyIsland" <cplusplus_rule s@yahoo.com> wrote in message
news:40400e22.0 406101100.21b13 e84@posting.goo gle.com...[color=blue]
> I'm new to c++ programming. Can anyone give me some code examples on
> how to do somestuff, or tips any info would be nice...[/color]
Code example of how to do somestuff:
void somestuff()
{
}
int main()
{
somestuff();
return 0;
}
Tip:
Many much more useful code examples are available
in any good C++ textbook. See the book reviews
at www.accu.org for ideas.
On 10 Jun 2004 12:00:29 -0700 in comp.lang.c++, cplusplus_rules @yahoo.com (SkyIsland) wrote,[color=blue]
>I'm new to c++ programming. Can anyone give me some code examples on
>how to do somestuff, or tips any info would be nice...[/color]
This issue is covered in Marshall Cline's C++ FAQ. It is always good to
check the FAQ before posting. You can get the FAQ at:
Comment