Connecting Tech Pros Worldwide Forums | Help | Site Map

Exercise

drago.osrecki@vk.t-com.hr
Guest
 
Posts: n/a
#1: Nov 16 '06
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
Guest
 
Posts: n/a
#2: Nov 16 '06

re: Exercise


drago.osre...@vk.t-com.hr wrote:
Quote:
I am pretty new to programming in c++. Can someone tell
where i can find
some exercise on net!
Google is your friend.
Quote:
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
Guest
 
Posts: n/a
#3: Nov 16 '06

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.comwrote:
Quote:
drago.osre...@vk.t-com.hr wrote:
Quote:
I am pretty new to programming in c++. Can someone tell
where i can find
some exercise on net!Google is your friend.
>
Quote:
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
Guest
 
Posts: n/a
#4: Nov 16 '06

re: Exercise


drago.osrecki@vk.t-com.hr wrote:
Quote:
>
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
Guest
 
Posts: n/a
#5: Nov 17 '06

re: Exercise


<drago.osrecki@vk.t-com.hrwrote in message
news:1163710396.056372.61170@e3g2000cwe.googlegrou ps.com...
Quote:
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
Guest
 
Posts: n/a
#6: Nov 17 '06

re: Exercise


Jim Langston wrote:
Quote:
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
Guest
 
Posts: n/a
#7: Nov 17 '06

re: Exercise


VJ <v@asd.orgwrote:
Quote:
Jim Langston wrote:
Quote:
>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
Guest
 
Posts: n/a
#8: Nov 18 '06

re: Exercise


"VJ" <v@asd.orgwrote in message
news:ejk5dq$3li$1@el-srv04-CHE.srvnet.eastlink.de...
Quote:
Jim Langston wrote:
Quote:
>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.


Closed Thread