473,396 Members | 1,968 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Hi, i want to learn programming...

I have a few questions:

1. Should I learn C first or VB?

2. Should I get a book or learn from websites?

3. What book or which website is best?

4. Or should I take a course?

Thanks for any responses.

Eric
Nov 14 '05 #1
9 1629
Eric wrote:

I have a few questions:

1. Should I learn C first or VB?
Don't bother with VB, it teaches poor programming methods
and is locked to a single platform (microsoft).

C is probably also not a good first language. Instead I
would recommend Java better yet Python.
2. Should I get a book or learn from websites?
For Python, any smart 12 year old should be able to teach
themselves Python from any of a number of good Python books.
3. What book or which website is best?


There is a book by O'Rielly publishers called "Learning
Python". That would be hard to beat.

Erik
--
+-----------------------------------------------------------+
Erik de Castro Lopo no****@mega-nerd.com (Yes it's valid)
+-----------------------------------------------------------+
A good debugger is no substitue for a good test suite.
Nov 14 '05 #2
Eric <e@e.com> scribbled the following:
I have a few questions: 1. Should I learn C first or VB?
What do you expect people on comp.lang.c to say? For a real opinion,
you should have asked on comp.programming or something.
Personally, I suggest not bothering with VB. It's a toy language,
useful for making pretty MS Windows GUIs but nothing else.
C is a good choice, but lately I have had good experience with Java. I
suggest you also try that.
2. Should I get a book or learn from websites?
Books. Definitely.
3. What book or which website is best?
Try the original K&R2, books by Deitel&Deitel, or "C Unleashed" by
a lot of people on this newsgroup (but not me). If you see anything
by Herbert Schildt, run far away. That guy makes mistakes so blatant
even *I* can't help but wonder why he is sos stupid.
4. Or should I take a course?
That's the most effective way to learn. Books, websites, even
comp.lang.c are no substitute for a human teacher.
Thanks for any responses.


--
/-- Joona Palaste (pa*****@cc.helsinki.fi) ------------- Finland --------\
\-- http://www.helsinki.fi/~palaste --------------------- rules! --------/
"Products like that make me wish I could menstruate."
- Andy Richter
Nov 14 '05 #3
Eric wrote:
I have a few questions:

1. Should I learn C first or VB?
Unless you want to be glued to Gatesware, the only excuse for VB is
someone waving a large check (BrE cheque) in your face.
2. Should I get a book or learn from websites?
Books (K&R2, Deitel&Deitel, Harbison&Steele, for example). For the most
part, avoid websites. The amount of crap on the web is huge. There are
exceptions. James Hu now is keeping the "Welcome to CLC" page at
<http://www.ungerhu.com/jxh/clc.welcome.txt>. It has a number of useful
links. Among these is the crucial web version of the longer book of the
CLC FAQs, by Steve Summit: <http://www.eskimo.com/~scs/C-faq/top.html>
3. What book or which website is best?
See above.
4. Or should I take a course?


Many people learn quite well from the resources above without taking
courses. Most people, however, find courses a better path. Not only is
it useful to have a live responsive person to answer questions, but
courses provide a discipline often missing in teaching oneself from
courses. Those required problem sets or lab sessions have a purpose,
even if students don't believe it. In addition, the questions that
others raise can clarify points that you didn't even realize you didn't
quite have down pat.

[Disclaimer: I have a professional interest in people's taking classes
in programming languages, even though I never took one myself.]

Nov 14 '05 #4

"Eric" <e@e.com> wrote in message news:
I have a few questions:

1. Should I learn C first or VB?
All languages do the same basic operations, so it's not too important. Both
VB and C are commercially successful, but neither is designed primarily for
teaching purposes. (VB is designed to make building GUIs on Windows easy, C
is designed as a portable and efficient procedural langauge). Either would
be a perfectly acceptable choice.
2. Should I get a book or learn from websites?
Book. You really need a professionally printed and bound manual to browse
whilst learning.
3. What book or which website is best?
Depends on your age, level of mathematical experience, and motivation. There
are plenty of C primers out there which are fine.
4. Or should I take a course?

A course is likely to be far more expensive, but the tutor will motivate you
by demanding assignments. Also, when you go an employer, he is far for
likely to hire you if you say "I did course X and got this certificate" than
if you say "I know C, I taught myself from a book".
Nov 14 '05 #5
Joona I Palaste <pa*****@cc.helsinki.fi> writes:
Eric <e@e.com> scribbled the following:
4. Or should I take a course?


That's the most effective way to learn. Books, websites, even
comp.lang.c are no substitute for a human teacher.


A /good/ human teacher, yes. A bad teacher can do more harm than good,
IMHO. Unfortunately, it's not always easy to find out in advance if a
teacher is good or bad.

Martin
--
,--. Martin Dickopp, Dresden, Germany ,= ,-_-. =.
/ ,- ) http://www.zero-based.org/ ((_/)o o(\_))
\ `-' `-'(. .)`-'
`-. Debian, a variant of the GNU operating system. \_/
Nov 14 '05 #6
Martin Dickopp wrote:
Joona I Palaste <pa*****@cc.helsinki.fi> writes:

Eric <e@e.com> scribbled the following:
4. Or should I take a course?


That's the most effective way to learn. Books, websites, even
comp.lang.c are no substitute for a human teacher.

A /good/ human teacher, yes. A bad teacher can do more harm than good,
IMHO. Unfortunately, it's not always easy to find out in advance if a
teacher is good or bad.

sitting in on a class the semester before you register is a good trial
period, IMO. although i have the tendency to be rather outspoken in
classes (in a bad way.)

--
-- Charles Banas
Nov 14 '05 #7
Hello

I'm currently learning ANSI C in my current programming subject at school.
The book we are using is "A First Book of ANSI C, Third Edition" by Garry J
Bronson. This seems like a good book.

I once had to buy a book on Java put out by Deital and Deital and it seemed
like one of the worst text books I've ever read. Even the teacher hated it.
I hope I don't get flamed for saying this :-)

Unless your just learning purely for self interest I'd definitely recomend
doing a course. Having a teacher explain things to you will save you months
of experimentation and frustration.

Have fun

Peter Mount
in**@petermount.au.com

"Malcolm" <ma*****@55bank.freeserve.co.uk> wrote in message
news:c7**********@newsg4.svr.pol.co.uk...

"Eric" <e@e.com> wrote in message news:
I have a few questions:

1. Should I learn C first or VB?
All languages do the same basic operations, so it's not too important.

Both VB and C are commercially successful, but neither is designed primarily for teaching purposes. (VB is designed to make building GUIs on Windows easy, C is designed as a portable and efficient procedural langauge). Either would
be a perfectly acceptable choice.

2. Should I get a book or learn from websites?
Book. You really need a professionally printed and bound manual to browse
whilst learning.

3. What book or which website is best?

Depends on your age, level of mathematical experience, and motivation.

There are plenty of C primers out there which are fine.

4. Or should I take a course?
A course is likely to be far more expensive, but the tutor will motivate

you by demanding assignments. Also, when you go an employer, he is far for
likely to hire you if you say "I did course X and got this certificate" than if you say "I know C, I taught myself from a book".

Nov 14 '05 #8
"Peter Mount" <in**@petermount.au.com> wrote:
I'm currently learning ANSI C in my current programming subject
at school. The book we are using is "A First Book of ANSI C,
Third Edition" by Garry J Bronson. This seems like a good book.
I think that was the assigned textbook in my compulsory "Procedural
Programming" core subject at university, three years ago. I didn't bother
reading the book... I just read the lecture notes, then I read comp.lang.c,
and I read the ANSI standard (which I bought over the internet). Of course,
I also got a lot of practise writing whatever programs seemed fun.

[snip] Unless your just learning purely for self interest I'd definitely
recomend doing a course. Having a teacher explain things to you
will save you months of experimentation and frustration.


Experimentation is a great way to learn, coupled with explanations from
people who really know the language well (ie. the regulars of comp.lang.c).

Having a teacher explain things is good, except when you have a better
understanding than the teacher and are constantly asking pointed questions
or correcting their mistakes!

--
Simon.
Nov 14 '05 #9
Eric <e@e.com> wrote:
I have a few questions:

1. Should I learn C first or VB?
Can't decide this for you, pls read the other posts
on this. If local schools offer inexpensive introductory
programming courses, then it might be worth it to take
one of those. That would involve learning the language
taught in that class, which might be VB.

One drawback to VB in that context is the price.
Personally I started with Perl, which has some advantages
over C for beginners (no scanf() snarlups, etc.)
2. Should I get a book or learn from websites?
You must get a book or books for the language of your choice.
When you start learning C, you must also acquire a K&RC.
3. What book or which website is best?
There are bibliographies of C books around, often
on sites with links to the FAQ.
You will find yourself consulting several books, and
this Archive, and the FAQ, and numerous websites.
Steve Summit does have his Introductory C Programming
Class Notes online.
4. Or should I take a course?


Depends on your finances, your time, etc.

Nov 14 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
by: Aziz McTang | last post by:
Hi Group, I am not an experienced programmer at all. I've learned html and css well enough to hand-write simple websites. I'm now looking to move to the next step. Initially, I'd like to do 3...
5
by: mr.iali | last post by:
Hi Everyone I would like to get into software developent using a programming language like c++, java or pl/sql for oracle. I have no idea where to start from. Which language is there more...
4
by: Mark Reed | last post by:
Guru's, From most of the posts here, I can see that knowledge of VB is a great advantage. Could anyone suggest a good site to learn VB from starting at the very beginning as I have no experience...
21
by: TAM | last post by:
Hi, I read that ASP.NET uses VB.NET instead of VBScript. I also read that ASP.NET is a subset of VB.NET. So if I learn VB.NET first then do I have the knowledge for programming ASP.NET...
182
by: Jim Hubbard | last post by:
http://www.eweek.com/article2/0,1759,1774642,00.asp
40
by: dydx13 | last post by:
Hello, I'm currently attending a university majoring in Computer Science. I took C and C++ at a community college and got an A in both classes. That was three years ago. I have not programmed or...
34
by: pandit | last post by:
hai all, i want to become a good programmer. one of my friends ( named "arnuld", he posts here infrequently), taught me Lisp. so i am not a programming beginner. i have heard these 2 points....
21
by: Lee.kain | last post by:
I want to learn C++! does anyone have any advice? Lee
2
by: harpreetsingh911 | last post by:
i am student of MCA. i want to know what things are needed to be a efficient programmer in c and c++.
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.