473,915 Members | 5,000 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Beginner

I want to start learning how to program. But I dont know where to
start. From what I've heard so far c++ is not a good lang. to learn
as a beginner because its very complicated compared to others like
python, ruby etc.
I would like to know if there is a prerequisite to learning any
computer language, is there something I have to learn before learning
any computer language, like a basic or core?
Jun 27 '08 #1
10 2177
On 2008-05-10 22:39, ha******@live.c om wrote:
I want to start learning how to program. But I dont know where to
start. From what I've heard so far c++ is not a good lang. to learn
as a beginner because its very complicated compared to others like
python, ruby etc.
While C++ might be more complicated that some other languages that does
not make it a worse language to learn programming with. Actually I would
argue the opposite, since C++ is quite complex you need to think about
stuff that some other languages do for you. Another good point of C++ is
that you don't have to pay for things that you do not use, which means
you can start by learning a sub-set of the language and learn the more
advanced parts later (if ever).
I would like to know if there is a prerequisite to learning any
computer language, is there something I have to learn before learning
any computer language, like a basic or core?
While there are no things that you *have* to know before you start
programming there are some things that will help: a basic understanding
of how computers work, some knowledge of discrete mathematics and logic,
and being accustomed to working with computers.

--
Erik Wikström
Jun 27 '08 #2
On May 10, 3:59*pm, Erik Wikström <Erik-wikst...@telia. comwrote:
On 2008-05-10 22:39, hamza...@live.c om wrote:
I want to start learning how to program. *But I dont know where to
start. *From what I've heard so far c++ is not a good lang. to learn
as a beginner because its very complicated compared to others like
python, ruby etc.

While C++ might be more complicated that some other languages that does
not make it a worse language to learn programming with. Actually I would
argue the opposite, since C++ is quite complex you need to think about
stuff that some other languages do for you. Another good point of C++ is
that you don't have to pay for things that you do not use, which means
you can start by learning a sub-set of the language and learn the more
advanced parts later (if ever).
I would like to know if there is a prerequisite to learning any
computer language, is there something I have to learn before learning
any computer language, like a basic or core?

While there are no things that you *have* to know before you start
programming there are some things that will help: a basic understanding
of how computers work, some knowledge of discrete mathematics and logic,
*and being accustomed to working with computers.

--
Erik Wikström

Thanks, do you know any good books or sites for beginner?
Jun 27 '08 #3
Concrete Mathematics and the Art of Computer Programming, both by
Knuth. Introductory books
on algorithms, however, should make up for a lighter reading(Knuth´s
books are heavy on math, which maybe to heavy to some).

Rafael


On 10 maio, 19:11, Gits <hamza...@live. comwrote:
On May 10, 3:59 pm, Erik Wikström <Erik-wikst...@telia. comwrote:
On 2008-05-10 22:39, hamza...@live.c om wrote:
I want to start learning how to program. But I dont know where to
start. From what I've heard so far c++ is not a good lang. to learn
as a beginner because its very complicated compared to others like
python, ruby etc.
While C++ might be more complicated that some other languages that does
not make it a worse language to learn programming with. Actually I would
argue the opposite, since C++ is quite complex you need to think about
stuff that some other languages do for you. Another good point of C++ is
that you don't have to pay for things that you do not use, which means
you can start by learning a sub-set of the language and learn the more
advanced parts later (if ever).
I would like to know if there is a prerequisite to learning any
computer language, is there something I have to learn before learning
any computer language, like a basic or core?
While there are no things that you *have* to know before you start
programming there are some things that will help: a basic understanding
of how computers work, some knowledge of discrete mathematics and logic,
and being accustomed to working with computers.
--
Erik Wikström

Thanks, do you know any good books or sites for beginner?
Jun 27 '08 #4
On May 10, 1:39 pm, hamza...@live.c om wrote:
I want to start learning how to program. But I dont know where to
start. From what I've heard so far c++ is not a good lang. to learn
as a beginner because its very complicated compared to others like
python, ruby etc.
I would agree that C++ is very complicated. Though there is Francis
Glassborow's book "You Can Do It!" that claims to be exactly what you
are looking for:

http://www.amazon.com/You-Can-Beginn...0465155&sr=1-1

Since fun is probably your biggest motivation at this point, if Python
or Ruby is more fun, I would go with one of those. Check the book
review section of the ACCU for other book recommendations :

http://accu.org/index.php/book_reviews

Ali
Jun 27 '08 #5
Gits wrote:
On May 10, 3:59 pm, Erik Wikström <Erik-wikst...@telia. comwrote:
>On 2008-05-10 22:39, hamza...@live.c om wrote:
>>I want to start learning how to program. But I dont know where to
start. From what I've heard so far c++ is not a good lang. to learn
as a beginner because its very complicated compared to others like
python, ruby etc.
While C++ might be more complicated that some other languages that does
not make it a worse language to learn programming with. Actually I would
argue the opposite, since C++ is quite complex you need to think about
stuff that some other languages do for you. Another good point of C++ is
that you don't have to pay for things that you do not use, which means
you can start by learning a sub-set of the language and learn the more
advanced parts later (if ever).
>>I would like to know if there is a prerequisite to learning any
computer language, is there something I have to learn before learning
any computer language, like a basic or core?
While there are no things that you *have* to know before you start
programming there are some things that will help: a basic understanding
of how computers work, some knowledge of discrete mathematics and logic,
and being accustomed to working with computers.

--
Erik Wikström


Thanks, do you know any good books or sites for beginner?
<<C++ primer><<Thinki ng in C++>>( free pdf on author's website.)
<<C++ language programming>by Bjarne Stroustrup ( c++ creator)
Jun 27 '08 #6
On 2008-05-11 08:37, asm23 wrote:
Gits wrote:
>On May 10, 3:59 pm, Erik Wikström <Erik-wikst...@telia. comwrote:
>>On 2008-05-10 22:39, hamza...@live.c om wrote:

I want to start learning how to program. But I dont know where to
start. From what I've heard so far c++ is not a good lang. to learn
as a beginner because its very complicated compared to others like
python, ruby etc.
While C++ might be more complicated that some other languages that does
not make it a worse language to learn programming with. Actually I would
argue the opposite, since C++ is quite complex you need to think about
stuff that some other languages do for you. Another good point of C++ is
that you don't have to pay for things that you do not use, which means
you can start by learning a sub-set of the language and learn the more
advanced parts later (if ever).

I would like to know if there is a prerequisite to learning any
computer language, is there something I have to learn before learning
any computer language, like a basic or core?
While there are no things that you *have* to know before you start
programming there are some things that will help: a basic understanding
of how computers work, some knowledge of discrete mathematics and logic,
and being accustomed to working with computers.

--
Erik Wikström


Thanks, do you know any good books or sites for beginner?
<<C++ primer><<Thinki ng in C++>>( free pdf on author's website.)
<<C++ language programming>by Bjarne Stroustrup ( c++ creator)
The C++ Programming Language might be a bit heavy for a beginner.
Another good introductory book is "Accelerate d C++".

--
Erik Wikström
Jun 27 '08 #7
<<C++ Primer>from Stan Lippman is a very good book for beginner.
Prepare a good IDE on your platform, Visual Studio Express on Windows
or Eclipse on LINUX, then you can begin.

In fact I think C++ is a very powerful language, it's too perfect to
meet its all feature. Maybe you should learn some script language such
as lua, python, perl, ruby then you can combine them together by using
SWIG.

Data structure, algrothim, design pattern, compiler, computer arch,
operation system etc., maybe you will learn for several years.
Jun 27 '08 #8
Bo Schwarzstein wrote:
<<C++ Primer>from Stan Lippman is a very good book for beginner.
Prepare a good IDE on your platform, Visual Studio Express on Windows
or Eclipse on LINUX, then you can begin.

In fact I think C++ is a very powerful language, it's too perfect to
meet its all feature. Maybe you should learn some script language such
as lua, python, perl, ruby then you can combine them together by using
SWIG.

Data structure, algrothim, design pattern, compiler, computer arch,
operation system etc., maybe you will learn for several years.
Yes, I'm quite agree with you, I have bought the <<C++ primer>book,
it's too big for beginners because it has many pages ( I only use it as
a dictionary), instead, I suggest Lippman's another book <<Essential
C++>>, it's a lite version and is better for beginners.
Jun 27 '08 #9
Thanks for all your responses, I'll go to my local borders or b&n
store and check these books. But I've decided to take some
programming classes.
Jun 27 '08 #10

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

Similar topics

5
3088
by: Richard B. Kreckel | last post by:
Hi! I was recently asked what book to recommend for a beginner in C++. I am convinced that you needn't study C in depth before learning C++ (though it helps), but cannot find any beginner's book which isn't aimed at people coming from C/Pascal/Java/Delpi/whatever... However, there seem to be plenty such books for all those other languages. Is there really no literature for people trying to learn programming by starting with C++? ...
8
2389
by: Grrrbau | last post by:
I'm a beginner. I'm looking for a good C++ book. Someone told me about Lafore's "Object-Oriented Programming in C++". What do you think? Grrrbau
7
2953
by: Rensjuh | last post by:
Hello, does someone have / know a good C++ tutorial for beginnners? I would prefer Dutch, but English is also fine. Hoi, heeft / kent iemand nog een goede C++ tutorial voor beginners? Het liefste in Nederlands, maar Engels is ook goed. Thnx, Rensjuh
27
4386
by: MHoffman | last post by:
I am just learning to program, and hoping someone can help me with the following: for a simple calculator, a string is entered into a text box ... how do I prevent the user from entering a text instead of a number, or give an error message? Also, how can I make the program verify there are two valid entries in txtBox1 and txtBox2 to then ENABLE the button operators (ie +, -, /, *).
18
2935
by: mitchellpal | last post by:
Hi guys, am learning c as a beginner language and am finding it rough especially with pointers and data files. What do you think, am i being too pessimistic or thats how it happens for a beginner? Are there better languages than c for a beginner? For instance visual basic or i should just keep the confidence of improving?
20
2311
by: weight gain 2000 | last post by:
Hello all! I'm looking for a very good book for an absolute beginner on VB.net or VB 2005 with emphasis on databases. What would you reccommend? Thanks!
5
2761
by: macca | last post by:
Hi, I'm looking for a good book on PHP design patterns for a OOP beginner - Reccommendations please? Thanks Paul
10
4485
by: Roman Zeilinger | last post by:
Hi I have a beginner question concerning fscanf. First I had a text file which just contained some hex numbers: 0C100012 0C100012 ....
22
18164
by: ddg_linux | last post by:
I have been reading about and doing a lot of php code examples from books but now I find myself wanting to do something practical with some of the skills that I have learned. I am a beginner php programmer and looking for a starting point in regards to practical projects to work on. What are some projects that beginner programmers usually start with? Please list a few that would be good for a beginner PHP programmer to
0
10039
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
9881
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
11354
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...
0
10923
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
11066
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
10542
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
8100
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
7256
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();...
3
3368
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.