| |
|
Welcome to KnowledgeSutra - Dear Guest | |
Simple C++ Programs
Started by Saint_Michael, Sep 28 2004 08:21 AM
16 replies to this topic
#3
Posted 29 September 2004 - 03:22 AM
agreed with BosZ...
no Real shortcut for programming...
you can start from Turbo C++ or with VC++ from Microsoft...
U need to understand bare minimum just to write simple code
---------------------------------------------
Datatypes.
Procedural programming/Object Oriented programming
Functions
-------------------------------------
next comes
Arrays
Pointers
structures
and list doesn't end here... If you wnat free Ebook then download here
http://64.78.49.204/
try it they r damn good books
gettincrazyovercoding
no Real shortcut for programming...
you can start from Turbo C++ or with VC++ from Microsoft...
U need to understand bare minimum just to write simple code
---------------------------------------------
Datatypes.
Procedural programming/Object Oriented programming
Functions
-------------------------------------
next comes
Arrays
Pointers
structures
and list doesn't end here... If you wnat free Ebook then download here
http://64.78.49.204/
try it they r damn good books
gettincrazyovercoding
#8
Posted 29 September 2004 - 09:11 PM
look into other code, get a C manual and start with a Hello World program of course 
It depends on if you want to learn C or C++ but I would look into using linux and gcc if you want C, since you will get aquainted with a lot of C code in Linux. You can also use gcc to compile C++
It depends on if you want to learn C or C++ but I would look into using linux and gcc if you want C, since you will get aquainted with a lot of C code in Linux. You can also use gcc to compile C++
#9
Posted 05 October 2004 - 07:17 PM
I would disagree with that.
Know C or C++ -> you know Java (but never use it
)
Know java -> C++ and especially C is difficult for you because it is more low level than java
So it all depends upon which one you start with, and starting with C is much more advantageous.
C is the standard for programming today, maybe someday it'll be java, but hopefully not! Anyways, you can't really compare C with Java since Java works in a completely different way.
Know C or C++ -> you know Java (but never use it
Know java -> C++ and especially C is difficult for you because it is more low level than java
So it all depends upon which one you start with, and starting with C is much more advantageous.
C is the standard for programming today, maybe someday it'll be java, but hopefully not! Anyways, you can't really compare C with Java since Java works in a completely different way.
#10
Posted 06 October 2004 - 06:20 AM
You may want to look at this article I wrote in my forum:
http://www.limzb.uni...topic.php?t=140
For a starter, you may want to try this program:
Compile and run it. You may want to look at the free compilers I listed in my article.
Good luck in your journey in C++ Programming!
http://www.limzb.uni...topic.php?t=140
For a starter, you may want to try this program:
Quote
#include <iostream.h>
int main ()
{
cout << "This is the 1st program I created after a long C++ Programming break"<<endl;
return 0;
}
int main ()
{
cout << "This is the 1st program I created after a long C++ Programming break"<<endl;
return 0;
}
Compile and run it. You may want to look at the free compilers I listed in my article.
Good luck in your journey in C++ Programming!
Edited by Shackman, 06 October 2004 - 06:21 AM.
Reply to this topic

1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users














