Click here to Skip to main content
15,881,852 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Questionhelp Pin
madhu912419-Aug-09 5:21
madhu912419-Aug-09 5:21 
AnswerRe: help Pin
David Crow19-Aug-09 5:26
David Crow19-Aug-09 5:26 
GeneralRe: help Pin
EliottA19-Aug-09 5:43
EliottA19-Aug-09 5:43 
GeneralRe: help Pin
Code-o-mat19-Aug-09 6:00
Code-o-mat19-Aug-09 6:00 
AnswerRe: help Pin
Code-o-mat19-Aug-09 5:51
Code-o-mat19-Aug-09 5:51 
GeneralRe: help Pin
Maximilien19-Aug-09 5:58
Maximilien19-Aug-09 5:58 
AnswerRe: help Pin
Selvam R19-Aug-09 8:22
professionalSelvam R19-Aug-09 8:22 
AnswerRe: help Pin
N. Rackley19-Aug-09 9:03
N. Rackley19-Aug-09 9:03 
First of all, are there any previous languages that you have learned, or is this your first one? Knowing which languages you might already use can help to direct you to decent learning resources.

There are differences between C and C++.

C is a standardized language. One of the major benefits of C is the fact that it does not change (as quoted from one of my CS professors). C can be compiled to many systems, and it is very, very fast. However, C also has a few drawbacks to the language. Dynamic memory is one issue (having a variable that stores strings of various sizes, for example) and requires more complex programming requiring things such as Malloc() and Free(). Another element is the fact that C is not an Object Oriented language. This is why C++ was developed.

C++ is an Object Oriented language. It builds upon the basic building blocks of C and extends it quite a bit. Classes are the biggest difference, allowing to group your various functions into "objects" (hence the Object Oriented). The nice thing about C++ is that it is backwards compatible with C.

All right. Resources.

CPlusPlus.com is a wonderful resource. They have one of the most comprehensive sets of documentation that I've seen on C and C++ to date. Also, they have very good, detailed tutorials.

You may also consider purchasing a textbook on the subject. The industry standard for C appears to be The C Programming Language by Kerrigan and Ritchie. I own both the first and second editions of this text, and I have used them extensively.

Hopefully this will be of help to you. Best of luck!
AnswerRe: help Pin
Rane20-Aug-09 1:16
Rane20-Aug-09 1:16 
AnswerRe: help Pin
Alan Balkany20-Aug-09 4:25
Alan Balkany20-Aug-09 4:25 
QuestionHow can i download a full internet page from browser Pin
SNArruda19-Aug-09 5:10
SNArruda19-Aug-09 5:10 
AnswerRe: How can i download a full internet page from browser Pin
Nemanja Trifunovic19-Aug-09 5:26
Nemanja Trifunovic19-Aug-09 5:26 
QuestionRe: How can i download a full internet page from browser Pin
David Crow19-Aug-09 5:31
David Crow19-Aug-09 5:31 
QuestionUpdate window problem in unicode Pin
bhanu_reddy0919-Aug-09 5:08
bhanu_reddy0919-Aug-09 5:08 
AnswerRe: Update window problem in unicode Pin
Code-o-mat19-Aug-09 8:42
Code-o-mat19-Aug-09 8:42 
QuestionHow to store rich edit box contents to a text file Pin
sunny_vc19-Aug-09 3:29
sunny_vc19-Aug-09 3:29 
AnswerRe: How to store rich edit box contents to a text file Pin
David Crow19-Aug-09 4:53
David Crow19-Aug-09 4:53 
Questionhow to use c++ to find prime palindrome Pin
ayeosq19-Aug-09 3:24
ayeosq19-Aug-09 3:24 
AnswerRe: how to use c++ to find prime palindrome Pin
molesworth19-Aug-09 4:09
molesworth19-Aug-09 4:09 
AnswerRe: how to use c++ to find prime palindrome Pin
CPallini19-Aug-09 4:10
mveCPallini19-Aug-09 4:10 
AnswerRe: how to use c++ to find prime palindrome Pin
Michael Schubert19-Aug-09 4:17
Michael Schubert19-Aug-09 4:17 
GeneralRe: how to use c++ to find prime palindrome Pin
ayeosq19-Aug-09 14:40
ayeosq19-Aug-09 14:40 
GeneralRe: how to use c++ to find prime palindrome Pin
Michael Schubert19-Aug-09 21:36
Michael Schubert19-Aug-09 21:36 
GeneralRe: how to use c++ to find prime palindrome Pin
ayeosq19-Aug-09 23:56
ayeosq19-Aug-09 23:56 
Questionunicode Pin
koiava19-Aug-09 1:31
koiava19-Aug-09 1:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.