Welcome Guest ( Log In | Register)



2 Pages V   1 2 >  
Reply to this topicStart new topic
> C++ Is It Really That Hard?
Duckey
post Nov 21 2005, 03:19 PM
Post #1


Newbie
*

Group: Members
Posts: 2
Joined: 21-November 05
Member No.: 14,670



Ok, last year when I was a sophmore in high school I took programming and the lanuage that we learned was VB and it was so easy. But this year I am going to take an indepentent study and learn C++ with one of my friends. But the bad thing is, is that the teacher doesnt even know how to use C++ so it is just me and my friend. Should I be worryed about anything?
Go to the top of the page
 
+Quote Post
gameratheart
post Nov 22 2005, 02:51 AM
Post #2


Privileged Member
*********

Group: [HOSTED]
Posts: 504
Joined: 14-November 05
From: Britannia!
Member No.: 14,287



Not really... C and C++ does use some advanced coding but you should get the hang of it pretty easily...

Although, if the teacher doesn't understand C/C++, you'll have a little trouble getting support if you need it...
Go to the top of the page
 
+Quote Post
ankushbhargava
post Nov 22 2005, 03:03 AM
Post #3


Newbie [Level 2]
**

Group: Members
Posts: 38
Joined: 20-November 05
From: In the Matrix
Member No.: 14,592



I would say that if you come from a programming background, since you've already programmed in VB, you would get hang of things pretty fast.
But you've got to be aware that C/C++ are less forgiving than VB is. You have to know what you are doing. Only practice can make you close to perfect here ohmy.gif
Go to the top of the page
 
+Quote Post
gameratheart
post Nov 22 2005, 03:21 AM
Post #4


Privileged Member
*********

Group: [HOSTED]
Posts: 504
Joined: 14-November 05
From: Britannia!
Member No.: 14,287



Yeah. Like at the end of the program, if you forget to type "end" it would never end the program, causing major errors when it reaches the end because there's nothing to do! So you have to use an "end" command.
Go to the top of the page
 
+Quote Post
saga
post Nov 22 2005, 07:06 AM
Post #5


Premium Member
********

Group: Members
Posts: 165
Joined: 12-September 05
Member No.: 11,777



in a way it does smile.gif

first how would u learn if ur teacher does not know c++..

if your first programming language is VB then you would at least find c++ strange and cumbersome but it is realy not...

why?

VB is a window based programming which combines both event and procedural method.. while c++ is pure procedural...

if programmming in Windows, in c++ you will be the one to create your window technicaly, what i mean is you are the one to register it to windows and everything else and this makes the job long.. unlike VB all you need to do is create a form or a window and do the coding in every event like clicking and scrolling..

but in the end c++ is a very powerful language today.. it may not be that very easy to learn but still it is easy and worth the effort..

good luck...
Go to the top of the page
 
+Quote Post
Duckey
post Nov 22 2005, 03:19 PM
Post #6


Newbie
*

Group: Members
Posts: 2
Joined: 21-November 05
Member No.: 14,670



Well the friend that is taking the class with me, his mom is a computer progammer and she has a lot of books about C ++.
Go to the top of the page
 
+Quote Post
switch
post Nov 28 2005, 07:45 AM
Post #7


Premium Member
********

Group: Members
Posts: 178
Joined: 13-October 04
From: NSW, Australia
Member No.: 1,713



Yeah that'll help alot- I learnt C++ from a book focusing on .NET and pretty much just learnt from my own mistakes... I learnt it alright, but it took forever and was so frustrating!!
On that note, be careful that you stick to standard C++ and not the .NET extensions while you're still learning. Although it's easier at first, it skips over some fundamentals that are very important later.

Make sure you utilize a book as well. Also I went from VB to C++ (with a slight detour through Java) and it wasn't all that bad. Especially if you've finished high school smile.gif

all the best!
Go to the top of the page
 
+Quote Post
Captain_Thunder
post Dec 17 2005, 05:59 PM
Post #8


Newbie [Level 1]
*

Group: Members
Posts: 15
Joined: 17-December 05
Member No.: 15,864



QUOTE
  Yeah. Like at the end of the program, if you forget to type "end" it would never end the program, causing major errors when it reaches the end because there's nothing to do! So you have to use an "end" command.

I've been working with C/C++ for a while, and I have no idea what you're talking about. The following is perfectly legal:
CODE
#include <stdio.h>

int main()
{
printf("Hello, world!");
return 0;
}


When you run it in the command prompt, it will print Hello, world! and end.
Go to the top of the page
 
+Quote Post
darkvirus
post Jan 12 2006, 01:53 AM
Post #9


Newbie
*

Group: Members
Posts: 5
Joined: 11-January 06
Member No.: 16,946



sad.gif its hard to me huh.gif
Go to the top of the page
 
+Quote Post
fffanatics