Welcome to the fastest-growing internet marketing forums!
Programming Corner Anything related to programming... PHP, PERL, ASP, ColdFusion, C++, etc. |
 |
|
09-06-2010, 09:45 PM
|
#1
|
Senior Member
Join Date: Jun 2010 |
|
|
Referrals: 0 |
Posts: 169 |
Reputation: 10 |
|
|
|
C++ learning???
hi mates...
which is the best website that you think is proper for a person who don't know anything about C++ and wants to learn it....if you know any then please share it.
thanks 
|
|
|
|
09-07-2010, 08:21 PM
|
#2
|
Extravaganzeer
Join Date: Oct 2008 |
|
|
Referrals: 4 |
Posts: 525 |
Reputation: 30 |
|
|
|
Hi, I think this one is the best: C programming.com - Your Resource for C and C++ Programming
I would learn something like PHP first, I wouldn't recommend this as a first programming language as it takes as much effort to compile a program as it takes to write one.
|
|
|
|
09-07-2010, 08:26 PM
|
#3
|
Senior Member
Join Date: Jun 2010 |
|
|
Referrals: 0 |
Posts: 169 |
Reputation: 10 |
|
|
|
ok thanks and from where I can learn and have a good command on PHP???
|
|
|
|
09-07-2010, 09:42 PM
|
#4
|
Extravaganzeer
Join Date: Oct 2008 |
|
|
Referrals: 4 |
Posts: 525 |
Reputation: 30 |
|
|
|
|
|
|
|
09-16-2010, 06:53 AM
|
#5
|
Member
Join Date: Sep 2010 |
|
|
Referrals: 0 |
Posts: 92 |
Reputation: 10 |
|
|
|
W3Schools Online Web Tutorials is a good resources to have on learning programming languages.
|
|
|
|
10-05-2010, 04:36 PM
|
#6
|
Senior Member
Join Date: Jun 2010 |
|
|
Referrals: 0 |
Posts: 169 |
Reputation: 10 |
|
|
|
Thanks Dave and Johny! I really appreciate your links as they helped me a lot 
|
|
|
|
06-07-2011, 09:26 AM
|
#7
|
Junior Member
Join Date: Jun 2011 |
|
|
Referrals: 0 |
Posts: 8 |
Reputation: 10 |
|
|
|
Hi,hello friends,please suggest me the best websites and ebooks to learn C programming language that carries good examples as well as good explanation from begining to its critical....
|
|
|
|
09-06-2011, 04:08 PM
|
#8
|
Extravaganzeer
Join Date: Oct 2008 |
|
|
Referrals: 4 |
Posts: 525 |
Reputation: 30 |
|
|
|
Quote:
Originally Posted by newsky
The C language was developed in 1972 by Dennis Richie at Bell Telephone laboratories, primarily as a systems programming language. That is, a language to write operating systems with. Richie’s primary goals were to produce a minimalistic language that was easy to compile, allowed efficient access to memory, produced efficient code, and did not need extensive run-time support. Despite being a fairly low-level high-level language, it was designed to encourage machine and platform independent programming.
C ended up being so efficient and flexible that in 1973, Ritchie and Ken Thompson rewrote most of the UNIX operating system using C. Many previous operating systems had been written in assembly. Unlike assembly, which ties a program to a specific CPU, C’s excellent portability allowed UNIX to be recompiled on many different types of computers, speeding it’s adoption. C and Unix had their fortunes tied together, and C’s popularity was in part tied to the success of UNIX as an operating system.
In 1978, Brian Kernighan and Dennis Ritchie published a book called “The C Programming Language”. This book, which was commonly known as K&R (after the author’s last names), provided an informal specification for the language and became a de facto standard. When maximum portability was needed, programmers would stick to the recommendations in K&R, because most compilers at the time were implemented to K&R standards.
In 1983, the American National Standards Institute (ANSI) formed a committee to establish a formal standard for C. In 1989 (committees take forever to do anything), they finished, and released the C89 standard, more commonly known as ANSI C. In 1990 the International Organization for Standardization adopted ANSI C (with a few minor modifications). This version of C became known as C90. Compilers eventually became ANSI C/C90 compliant, and programs desiring maximum portability were coded to this standard.
In 1999, the ANSI committee released a new version of C called C99. It adopted many features which had already made their way into compilers as extensions, or had been implemented in C++.
C++ (pronounced see plus plus) was developed by Bjarne Stroustrup at Bell Labs as an extension to C, starting in 1979. C++ was ratified in 1998 by the ISO committee, and again in 2003. A new version of the standard, known as C++0x (implying it will come out before 2010) is being developed as this is written.
The underlying design philosophy of C and C++ can be summed up as “trust the programmer” — which is both wonderful, because the compiler will not stand in your way if you try to do something unorthodox that makes sense, but also dangerous, because the compiler will not stand in your way if you try to do something that could produce unexpected results. That is one of the primary reasons why knowing how NOT to code C/C++ is important — because there are quite a few pitfalls that new programmers are likely to fall into if caught unaware.
C++ adds many new features to the C language, and is perhaps best thought of as a superset of C, though this is not strictly true as C99 introduced a few features that do not exist in C++. C++’s claim to fame results primarily from the fact that it is an object-oriented language. As for what an object is and how it differs from traditional programming methods, well, we’ll cover that in just a few sections.
|
Why are you cutting and pasting from another site, do you want to get banned?
|
|
|
|
06-04-2012, 07:27 AM
|
#9
|
Member
Join Date: May 2012 |
|
|
Referrals: 0 |
Posts: 57 |
Reputation: 10 |
|
|
|
I like to download some C++ books is in pdf format available in internet that released by authors, it will make easy to learn and practical.
|
|
|
|
06-05-2012, 10:38 AM
|
#10
|
Member
Join Date: Apr 2012 |
|
|
Referrals: 0 |
Posts: 58 |
Reputation: 10 |
|
|
|
C++ is an object oriented language ,before going to learn with C++ one have to go with C concepts,very basic concepts in learning any advanced language.There are lots of on-line resources available that helps you in learning. cplusplus [dot] com is good site to learn oiline.
|
|
|
|
Thread Tools |
Search this Thread |
|
|
Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
Similar Threads
|
Thread |
Thread Starter |
Forum |
Replies |
Last Post |
Never Stop Learning!
|
dave |
General Marketing Chat |
3 |
09-17-2010 03:02 AM |
All times are GMT. The time now is 12:19 PM.
|
|
|