473,799 Members | 3,671 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 1657
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.programmin g 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.hel sinki.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.hel sinki.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.hel sinki.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.u k> wrote in message
news:c7******** **@newsg4.svr.p ol.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**@petermoun t.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
1795
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 things: 1) Generate web pages This one's fairly obvious maybe. 2) Create a simplified translation package specific to my line of work:
5
2656
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 demand for. Looking at jobs there seems to be a better chance in getting a java job rather than a oracle or c++ job. Also is java and oracle a good combiantion?
4
1416
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 whatsoever. Many thanks, Mark
21
2864
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 applications or do I need to learn both VB.NET and ASP.NET. Thank you. TAM
182
7561
by: Jim Hubbard | last post by:
http://www.eweek.com/article2/0,1759,1774642,00.asp
40
3027
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 anything like that in three years. I want to get back into the programming scene so I have a question: Which should I relearn first, C or C++? I have forgotten a lot about both languages so please tell me which i should relearn first! ...
34
3162
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. i want to know how : 1. C gives you a strong base of Procedural style of programming which forms the basis of learning other paradigms e.g OOP
21
2014
by: Lee.kain | last post by:
I want to learn C++! does anyone have any advice? Lee
2
1385
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
9687
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9543
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10488
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10237
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9077
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6808
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
4144
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3761
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2941
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.