Home › Forums › Programming › Should I start with C or C++
Tagged: c, cpp, getting started, java, performance
| Author | Posts |
|---|---|
| Author | Posts |
| February 19, 2012 at 12:16 am #1420 | |
|
submeyar |
Need A Suggestion Can you please Suggest me that which Books should i Study and is it Right to Start with C++ instead of Learning C First? I think C++ and C are same but have little Differences. And i also want to Know the Performance Difference b/w C++ and Java. And which Programming would you more Prefer ? Reply As Soon As Possible! |
|
|
Tweet |
| February 19, 2012 at 6:42 am #1422 | |
|
Basavaraj |
C++ = C + Objected Oriented Concepts To learn C++ You need to have the knowledge of ‘C’ so better you first learn ‘C’ and then ‘C++’ ‘Java’ uses most of the Object Oriented Concepts of ‘C++’ and also adds some new features to it. |
|
|
Tweet |
| February 19, 2012 at 3:06 pm #1423 | |
|
Satish |
Starting with C is best. As you would learn the basics of programming and the way computer programs work: the building blocks. If you know C, it would be easy to understand the concepts present in C++. If you directly jump into C++ it would be like throwing someone into ocean inorder to train him/her to swim! So its a better approach to learn C first, later learn the object oriented concepts and the representation of real world problems in programmatic way in C++, which would help you to understand and make use of Java components and other features present in Java to solve real world problems
|
|
|
Tweet |
| February 19, 2012 at 7:34 pm #1429 | |
|
submeyar |
Ok thanks for Brief Reply, Last think i want to Ask is That, i have started Studying “Ivor Horton” Book “Beginning.C.From.Novice.to.Professional” and Hope that it will Help me to Learn the Basics. Can i Learn “C” by Only Studying Book and Applying Examples and figuring Out myself, or i really need a teacher. Thanks Once again for replying Soon. |
|
|
Tweet |
| February 20, 2012 at 7:40 am #1430 | |
|
Basavaraj |
As i know Book is the Best Teacher,You go through the book understand the concepts and most important thing is try to solve the exercise problems on your own i mean write the programs your self and execute them then it would be more interesting,do not mug-up any thing in ‘C’ understand it. |
|
|
Tweet |
| February 20, 2012 at 8:09 am #1431 | |
|
RoboCop |
I have been learning C and PHP by reading books..and whenever I get doubts I come to Technotip.com and do a quick search to find out the answer. If I don’t find it, I’ll ask in the forum. And I have been practicing all the video tutorial lessons published/produced by Technotip.com which has immensely helped in learning and understanding the logic. This has been a great time saver for me so far. I too think, BOOK is the best teacher.
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
printf("Hello Submeyar\n");
printf("Welcome To C\n");
printf("\n\n\n\nand Welcome To Technotip IT Solutions and Training Center\n");
getch();
}
Output and Welcome To Technotip IT Solutions and Training Center |
|
|
Tweet |
| February 20, 2012 at 12:59 pm #1434 | |
|
Satish |
@RoboCop, Glad to know that we at Technotip IT Solutions and Training Center could help you in learning computer programs. @submeyar, I think a teacher could save you a lot of time, as he imparts his knowledge and programming expertise / experience to you. But I think spoon feeding will diminish your logical thinking capability, which is one of the major component for a effective programmer. So better, learn on your own. Refer books. Participate on the forum. Try to help other people too with whatever you know. This way you would develop more skills. Together we can learn more.
Get involved. Teach others whatever you learn. Share on the forum. Learn from others. Just reading won’t help, you have to practice by typing and running the program. Copy Paste won’t help |
|
|
Tweet |
| February 22, 2012 at 12:09 am #1435 | |
|
submeyar |
One thing that Really Annoy Me is that you said Without C, C++ will be Tough. While On other hand Most of Programmer i met says that C and C++ are Different and if SomeOne is learning C++ from the Scratch than its ok. See here is the Example; http://www.cprogramming.com/begin.html Check the Topic: “Do I need to know C to learn C++?” Like that I can Give other examples of Experts that say the same thing. Now this really Annoy me Because i Also Consider you an Expert Programmer that is saying Completely Opposite thing! |
|
|
Tweet |
| February 23, 2012 at 5:53 am #1439 | |
|
Basavaraj |
You have asked experts who all ready have the knowledge of ‘c’,'c++’ and programming, once you become expert your answer will be same,we have mentioned the best way for beginners choice is yours. |
|
|
Tweet |
| February 23, 2012 at 6:40 am #1440 | |
|
Satish |
@submeyar, Well, I visited the site you are referring to and saw this answer there: Do I need to know C to learn C++?
that answer tells it all. The best way is to learn C and then C++ [period] |
|
|
Tweet |
