![]() |
![]() |
![]() |
|||||
![]() |
![]() |
![]() |
![]() |
![]() |
|||
| Welcome
to Tech Support Forum home to more then 136,000 problems solved. Issues
have included: Spyware, Malware, Virus Issues, Windows, Microsoft,
Linux, Networking, Security, Hardware, and Gaming Getting your
problem solved is as easy as: 1. Registering for a free account 2. Asking your question 3. Receiving an answer Registered members: * See fewer ads. * And much more..
|
| Want to know how to post a question? click here | Having problems with spyware and pop-ups? First Steps |
|
|||||||
![]() |
|
|
LinkBack | Thread Tools |
|
|
#1 (permalink) |
|
title here
|
C++
Hello, TSF!
I'm looking to dabble into a bit of C++ but I'm very unfamiliar with it and I'd really like some links to tutorials or even you're tutorials - the point is, I don't care where I get them. I was told it was an 'object oriented language' such as VB, which I'm fluent in - but when I use Dev++, it's just a console based language, but when I use SharpDevelop it's now a object oriented language, what gives? This is such a confusing language, I really don't get it at all. Thanks, TSF!
__________________
|
|
|
|
| Important Information |
|
Join the #1 Tech Support Forum Today - It's Totally Free!
TechSupportForum.com is a leading support website for your computer needs. We offer free, friendly and personalized computer support. Why pay to have your computer fixed when you can do it for free. Join TechSupportforum.com Today - Click Here |
|
|
#3 (permalink) |
|
Moderator, Hardware Team
Join Date: May 2008
Location: S.E. Pennsylvania
Posts: 18,531
OS: Win7
|
Re: C++
I dabbled in C and C++ after using VB got lost went back to VB for the simple things I use for, but have a look here> http://www.cprogramming.com/
|
|
|
|
|
|
#4 (permalink) |
|
Moderator Hardware Team
Join Date: Oct 2006
Location: Brit living in Greece
Posts: 7,490
OS: WinME, WinXP Pro SP3, Win7 Beta, Ubuntu 9.04 & Netbook Remix & CD2USB, Mepis 6.5, Fedora 10
|
Re: C++
I was under the impression that c++ was a step below stuff like visual basic .. for a start it's command line and hardly visual at all .. still a step above machine language but a total different ball game to what you have experienced up to now. It's more like an extension to DOS where all your commands are lined up and rarely make any sense to the untrained eye
__________________
. ![]() . I'm not old!! I'm age impaired ![]() .. D_F I DON'T PLAY GAMES How to mark your thread as solved ![]() HDD DIAG UTILS TSF's Photographer's Corner |
|
|
|
|
|
#6 (permalink) |
|
Moderator Hardware Team
Join Date: Oct 2006
Location: Brit living in Greece
Posts: 7,490
OS: WinME, WinXP Pro SP3, Win7 Beta, Ubuntu 9.04 & Netbook Remix & CD2USB, Mepis 6.5, Fedora 10
|
Re: C++
more than a bit .. the original C language was used to program UNIX and that should be more than enough to clue you up .. that site that was given earlier looks good .. and has a tutorial but the main point is whether or not you have the time and patience to follow it through. Many things look like a great idea only to find that we bite of more than we can chew due to lack of understanding and help is difficult to come by.
__________________
. ![]() . I'm not old!! I'm age impaired ![]() .. D_F I DON'T PLAY GAMES How to mark your thread as solved ![]() HDD DIAG UTILS TSF's Photographer's Corner |
|
|
|
|
|
#10 (permalink) |
|
Troubled
Join Date: Jul 2009
Posts: 720
OS: xp home 2006 sp2
|
Re: C++
A header file commonly contains forward declarations of classes, subroutines, variables, and other identifiers. Programmers who wish to declare standardized identifiers in more than one source file can place such identifiers in a single header file, which other code can then include whenever the header contents are required.
The C standard library and C++ standard library traditionally declare their standard functions in header files At some point, a person learning to program in C/C++ learns the distinction between "header" files and "source" files. That is, a source file is compiled by the compiler and header files are shared among the source files. Then the question becomes, "How do I use header files effectively?" This is a description of the modern convention for what goes into header files, how header files are organized, and how they are used. In some programming languages, the main function is where a program starts execution. It is generally the first user-written function run when a program starts (some system-specific software generally runs before the main function), though some languages (notably C++ with global objects that have constructors) can execute user-written functions before main runs. The main function usually organizes at a high level the functionality of the rest of the program. The main function typically has access to the command arguments given to the program at the command-line interface. Agreed?? |
|
|
|
![]() |
| Thread Tools | |
|
|