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!
Hi!
Started by Jacki, Sep 23 2009 03:27 AM
13 replies to this topic
#1
Posted 23 September 2009 - 03:27 AM
|
|
|
#2
Guest_Jordan_*
Posted 23 September 2009 - 04:38 AM
Guest_Jordan_*
Hey Jacki, welcome to CodeCall! How are you learning C++?
#3
Posted 23 September 2009 - 07:30 AM
Jordan said:
Hey Jacki, welcome to CodeCall! How are you learning C++?
Bye! :thumbup1:
#4
Posted 23 September 2009 - 08:39 AM
#5
Posted 23 September 2009 - 08:42 AM
Welcome aboard!
#6
Posted 23 September 2009 - 10:58 AM
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:
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
Posted 23 September 2009 - 11:07 AM
MathX said:
Stop C, go into C++.
Welcome here m8 :). Enjoy :)
Welcome here m8 :). Enjoy :)
Edit: How can I edit my signature? I found nothing in the CP.
#8
Posted 23 September 2009 - 11:33 AM
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++.
C is a good language, it's just not a very effective stepping stone into C++.
#9
Posted 23 September 2009 - 12:26 PM
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
Posted 23 September 2009 - 03:35 PM
Welcome to CodeCall :D
#11
Posted 24 September 2009 - 03:16 AM
Welcome to the forum :)
Due to circumstances beyond my control I am master of my fate and captain of my soul.
— Ashleigh Brilliant
— Ashleigh Brilliant
#12
Posted 24 September 2009 - 07:34 AM
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.


Sign In
Create Account


Back to top









