Jump to content



Welcome to AstaHost - Dear Guest , Please Register here to get Your own website. - Ask a Question / Express Opinion / Reply w/o Sign-Up!

Toggle shoutbox Shoutbox Open the Shoutbox in a popup

@  agyat : (23 May 2013 - 01:23 AM) Wow! Mr. Sb Back Home.
@  OpaQue : (23 May 2013 - 12:44 AM) Ting
@  OpaQue : (24 April 2013 - 02:44 PM) I guess, Time to run Mycent script.
@  OpaQue : (24 April 2013 - 02:43 PM) wow.. not much spam. except habatt posting lot of links.. :P
@  yordan : (23 April 2013 - 01:04 PM) You're welcome, agyat. Nice to have been helpful. Second lesson: try full words, "you" instead of "EW".
@  agyat : (23 April 2013 - 05:03 AM) @YORDAN: tHANK EW FOR YOUR FIRST LESSON.   :D
@  yordan : (22 April 2013 - 09:43 PM) @agyat : "why don't you help me", or "please help me", or "please teach us"
@  yordan : (22 April 2013 - 09:42 PM) welcome back, velma
@  velma : (22 April 2013 - 07:51 AM) **yawns** Good to be back, wonder what is going on here :)
@  agyat : (22 April 2013 - 03:50 AM) Oh! so, why don't help me learn english..
@  yordan : (21 April 2013 - 08:38 PM) The goal mentioned by shiu : "learning english, learning computer"
@  agyat : (21 April 2013 - 06:31 PM) WHAT GOAL?
@  yordan : (20 April 2013 - 10:39 AM) yes, that's our goal. simultaneouly learning English and teaching/learning computer using.
@  shiyu : (20 April 2013 - 07:30 AM) learning english,learning computer
@  yordan : (19 April 2013 - 01:11 PM) Oh, I see, it's just a trick in order to force people looking at your texte. Somehow smart, maybe.
@  agyat : (19 April 2013 - 02:54 AM) And of course I know it is not SEO friendly.
@  agyat : (19 April 2013 - 02:52 AM) There may be two possible answers for that ....


1) Shout was posted using mobile keypad.

2) To force people read content carefully and/or with more concentration.
@  agyat : (19 April 2013 - 02:49 AM) There may be two possible answers for that ....
@  yordan : (18 April 2013 - 09:35 PM) however, why this mixing of capital letters in the middle of your text?
@  agyat : (18 April 2013 - 11:10 AM) false feelings.

Replying to [tutorial] Basics Of C Programming - Part 2


Post Options

    • Can't make it out? Click here to generate a new image

  or Cancel


Topic Summary

oxydon

Posted 18 October 2008 - 05:36 AM

C was a non object oriented programming language, C++ is just a well, more updated version of C that includes more modern standards including OOP.

As for the last one you mentioned, I think you mean Visual C++ and variants, which are Microsoft products (Microsoft Visual C++).

C and C++ are general purpose programming languages, if you can write c or c++ you can virtually do anything, i suggest you stick with console applications as you start, you can do graphical stuff later when you'd mastered the language very well.
Although C++ looks like C, it's quite a different language and it was rewritten from scratch with C compatibility in mind but with so many enhancements, the most visible improvement with C++ is that it is object oriented, this is a different programming paradigme from procedural C.
I would like to emphasise the fact that the C WASN'T, the C language still IS !! i personnally do a lot of work in this language wich i find to be a very powerfull tool of work, although i am familiar with C++i still write C daily, however as a beginner you can start C++ directly, most of us still use C because one way or another it's the language we master the best.
Visual C++, is just an integrated development environment (IDE), it only runs in microsoft windows, this is an inferior software platform, if you want to do some real development you should use a higher grade system such as GNU/Linux or FreeBSD.

Chesso

Posted 11 August 2007 - 11:15 PM

C was a non object oriented programming language, C++ is just a well, more updated version of C that includes more modern standards including OOP.

As for the last one you mentioned, I think you mean Visual C++ and variants, which are Microsoft products (Microsoft Visual C++).

dani2810

Posted 11 August 2007 - 03:20 PM

Hey,

Long time no see, digital brother. <LOL
Wow I am just amazed at how much you guys are literate in computer programming languages. For me, it's HTML and I only know the basics. Well, it's kinda sad but I guess it can hold out for a little time being while I go try to learn PHP.

Can someone answer my question:

How can you benefit from being literate in C programming and C++?? What about C++ Visuals? Is that another programming language too?

vidit

Posted 01 July 2007 - 12:33 PM

Thankx for the second part man, glad to learn it. :P
I think i'm gonna learn a lot here.<_<

Chesso

Posted 08 June 2007 - 06:23 AM

C and C++ aren't too different, C++ is more an upgrade to add Object Orientation to the mix.

matthewk

Posted 08 June 2007 - 06:18 AM

Wow, I hope these guides keep coming! There are a lot of differences for me for C compared to c++ and java. I like the syntax better in c++ and java, so the more guides I can read like this, the better off I am! Thanks a lot for your hard work B)

FoRsAkEn

Posted 03 January 2007 - 11:13 AM

Well, it was a great tutorial and i found it a very useful addition to my learning of programming. There were a few minor improvements in store, which SP Rao has stated for me.

All in all a good tutorial, and i await the next part with great anticipation :)

yordan

Posted 03 January 2007 - 10:17 AM

I actually didn't know what it meant either, but I don't think I have ever needed to use it, but then again Iv'e only seen it used rarely.

rarely is already a lot. I never saw thins += thing until today, and I don't even mind seeing somebody using it. Nevertheless, from a philosophical point of view, knowledge is supposed to be a good thing, even for (probably) useless things :)

Chesso

Posted 02 January 2007 - 11:53 PM

I actually didn't know what it meant either, but I don't think I have ever needed to use it, but then again Iv'e only seen it used rarely.

yordan

Posted 02 January 2007 - 03:54 PM

Here is an example:
a = 10;
a += 1;
(a==11);
a = 0;
a += -1;
(a==-1);
a = 5;
a += -3;
(a==2);

So a += b; is the same as writing a = a + b;, just a simpler syntax.

OK, thanks for the reply. I learned something today, now I know what "+=" means.

Review the complete topic (launches new window)