Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   C++ (http://www.velocityreviews.com/forums/f39-c.html)
-   -   Exercise (http://www.velocityreviews.com/forums/t458503-exercise.html)

drago.osrecki@vk.t-com.hr 11-16-2006 08:53 PM

Exercise
 
Hi programmers! I am pretty new to programming in c++. Can someone tell
where i can find
some exercise on net! I have good books but I dont have practise what
is the most important!
And can you tell what is the best way to learn a good programming?

Please tell me!
Thank you!


mlimber 11-16-2006 09:01 PM

Re: Exercise
 
drago.osre...@vk.t-com.hr wrote:
> I am pretty new to programming in c++. Can someone tell
> where i can find
> some exercise on net!


Google is your friend.

> I have good books but I dont have practise what
> is the most important!
> And can you tell what is the best way to learn a good programming?


The FAQ can:

http://www.parashift.com/c++-faq-lit...learn-cpp.html

Cheers! --M


drago.osrecki@vk.t-com.hr 11-16-2006 10:14 PM

Re: Exercise
 

Thanks, but I read it before! I need something I can exercise on!! PDFs
or something!

On Nov 16, 10:01 pm, "mlimber" <mlim...@gmail.com> wrote:
> drago.osre...@vk.t-com.hr wrote:
> > I am pretty new to programming in c++. Can someone tell
> > where i can find
> > some exercise on net!Google is your friend.

>
> > I have good books but I dont have practise what
> > is the most important!
> > And can you tell what is the best way to learn a good programming?The FAQ can:

>
> http://www.parashift.com/c++-faq-lit...learn-cpp.html
>
> Cheers! --M



Default User 11-16-2006 11:15 PM

Re: Exercise
 
drago.osrecki@vk.t-com.hr wrote:

>
> Thanks, but I read it before! I need something I can exercise on!!
> PDFs or something!


Please don't top-post. Your replies belong following or interspersed
with properly trimmed quotes. See the majority of other posts in the
newsgroup, or the group FAQ list:
<http://www.parashift.com/c++-faq-lite/how-to-post.html>


The best way to hone your skills is to find a project, design and code
it. There are a million potentials projects, make it something that
interests you.



Brian

Jim Langston 11-17-2006 02:55 AM

Re: Exercise
 
<drago.osrecki@vk.t-com.hr> wrote in message
news:1163710396.056372.61170@e3g2000cwe.googlegrou ps.com...
> Hi programmers! I am pretty new to programming in c++. Can someone tell
> where i can find
> some exercise on net! I have good books but I dont have practise what
> is the most important!
> And can you tell what is the best way to learn a good programming?
>
> Please tell me!
> Thank you!


Well, when I first started coding, I reinvented the wheel quite a bit. For
example, MS-DOS had a find program that would find a file on the disk and I
wondered how they did it. So I did some research on directory calls, and
wrote a program that did what find did. Then I ran mine compared to the one
that came with MS-DOS and they ran in exactly the same speed.

A lot of what I did when I was new to programming was just try to figure out
how to do things. How does random file access work? So I wrote a little
program that allowed me to enter tape names and data and store them to a
file and retrieve them. Never used the program after I finished it, but I
learned a lot. Just about anything you can think of can be an exercise.
Some is OS specific (how much disk space do you have left? How much memory
is currently free?) some is generic (file IO is for the most part generic).

Think of a program you can't write, and write it.



VJ 11-17-2006 11:11 AM

Re: Exercise
 
Jim Langston wrote:
> Some is OS specific (how much disk space do you have left? How much memory
> is currently free?) some is generic (file IO is for the most part generic).


Are there ways to check free memory space and free disk space?

Marcus Kwok 11-17-2006 06:06 PM

Re: Exercise
 
VJ <v@asd.org> wrote:
> Jim Langston wrote:
>> Some is OS specific (how much disk space do you have left? How much memory
>> is currently free?) some is generic (file IO is for the most part generic).

>
> Are there ways to check free memory space and free disk space?


Probably, but not in Standard C++. As Jim Langston said, it will be OS
specific.

--
Marcus Kwok
Replace 'invalid' with 'net' to reply

Jim Langston 11-18-2006 12:17 AM

Re: Exercise
 
"VJ" <v@asd.org> wrote in message
news:ejk5dq$3li$1@el-srv04-CHE.srvnet.eastlink.de...
> Jim Langston wrote:
>> Some is OS specific (how much disk space do you have left? How much
>> memory is currently free?) some is generic (file IO is for the most part
>> generic).

>
> Are there ways to check free memory space and free disk space?


Yes, but OS specific. Anything you write for one OS won't work on another.




All times are GMT. The time now is 08:35 AM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57