Jump to content

Hi!

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
13 replies to this topic

#1
Jacki

Jacki

    Learning Programmer

  • Members
  • PipPipPip
  • 80 posts
Hi at all, I'm Jacki.
My real name's Jacopo and I'm 16. I'm already good in PHP/Mysql and want to know more of C/C++. I know already the OOP but in C++ is a little more complex. I hope that I can learn a lot here.
(I'm not very good in english, but I'll try to make me understand)

bye-bye!

PS: plaese, correct me if I do some mistake... Thanks!

#2
Guest_Jordan_*

Guest_Jordan_*
  • Guests
Hey Jacki, welcome to CodeCall! How are you learning C++?

#3
Jacki

Jacki

    Learning Programmer

  • Members
  • PipPipPip
  • 80 posts

Jordan said:

Hey Jacki, welcome to CodeCall! How are you learning C++?
I'm reading some tutorial on internet, I think that I'm going to study C and then C++ but I think that C's quite simple (few things to know)... what do you reccomend to learn first? Do you know some interesting tutorial?

Bye! :thumbup1:

#4
debtboy

debtboy

    Programming God

  • Members
  • PipPipPipPipPipPipPip
  • 916 posts
Hi Jacki, welcome to the forum :)

#5
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts
Welcome aboard!
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog

#6
MathX

MathX

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 4,001 posts

Jacki said:

I'm reading some tutorial on internet, I think that I'm going to study C and then C++ but I think that C's quite simple (few things to know)... what do you reccomend to learn first? Do you know some interesting tutorial?

Bye! :thumbup1:

Stop C, go into C++.

Welcome here m8 :). Enjoy :)

Interested in participating in community events?
Want to harness your programming skill and turn it into absolute prowess?
Come join our programming events!


#7
Jacki

Jacki

    Learning Programmer

  • Members
  • PipPipPip
  • 80 posts

MathX said:

Stop C, go into C++.

Welcome here m8 :). Enjoy :)
Can you explain to me why I have to leave C and start C++? Thanks! Bye! :w00t:

Edit: How can I edit my signature? I found nothing in the CP.

#8
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts
Learning C will give you a lot of stuff to unlearn when you start learning C++. C has a lot of techniques that are standard "good practice" there, but are considered "bad practice" in C++.

C is a good language, it's just not a very effective stepping stone into C++.
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog

#9
Jacki

Jacki

    Learning Programmer

  • Members
  • PipPipPip
  • 80 posts
C++ is a evolution of C, is that true? Is C++ more used than C? At the moment programming's my hobby, but in a professional future C will be useful?

#10
Vswe

Vswe

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 9,552 posts
Welcome to CodeCall :D

#11
Xility

Xility

    Programmer

  • Members
  • PipPipPipPip
  • 130 posts
Welcome to the forum :)
Due to circumstances beyond my control I am master of my fate and captain of my soul.
— Ashleigh Brilliant

#12
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts

Jacki said:

C++ is a evolution of C, is that true? Is C++ more used than C? At the moment programming's my hobby, but in a professional future C will be useful?

C++ started out life as "C with classes", adding object-oriented programming concepts to C. However, it has also added templates. The combination of classes and templates allows you to radically alter the way you approach even the most basic activities. For example:
int i;
float f;
char* s[]="hiya";
printf("int: $d\n",i);
printf("float: $f\n",f);
printf("string: $s\n",s);
becomes:
int i;
float f;
string s="hiya";
cout<<i<<"\n";
cout<<f<<"\n";
cout<<s<<"\n";
The time you spend learning things like format specifiers for printf() and scanf() can be spent learning C++, as they are almost completely unnecessary.

Both C and C++ are used, but they are used in different areas. Most video games, for example, are in C++. Operating systems tend to be in C.
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog