I'm totally new to c++ and I don't know how to open a .c++ file.
.
|
|
| User: "Mike Wahler" |
|
| Title: Re: .c++ file |
28 Jun 2007 10:48:40 AM |
|
|
<idanwin@yahoo.co.uk> wrote in message
news:1183043217.087462.64460@k79g2000hse.googlegroups.com...
I'm totally new to c++ and I don't know how to open a .c++ file.
Use any text editor.
-Mike
.
|
|
|
|
| User: "v0id" |
|
| Title: Re: .c++ file |
28 Jun 2007 10:13:13 AM |
|
|
On 28 Jun., 17:06, wrote:
I'm totally new to c++ and I don't know how to open a .c++ file.
Pick up your favorite editor, and see what's inside.
Usually, C++ source files has an extension such as "cpp", "cxx", "cc",
etc.
.
|
|
|
|
| User: "" |
|
| Title: Re: .c++ file |
28 Jun 2007 01:04:43 PM |
|
|
On Jun 28, 5:06 pm, wrote:
I'm totally new to c++ and I don't know how to open a .c++ file.
I mean: how to run your c++ program?
.
|
|
|
| User: "Victor Bazarov" |
|
| Title: Re: .c++ file |
28 Jun 2007 01:12:00 PM |
|
|
wrote:
On Jun 28, 5:06 pm, wrote:
I'm totally new to c++ and I don't know how to open a .c++ file.
I mean: how to run your c++ program?
You need to compile it. The compilation will result in a runable
(executable) file, eventually. As to how precisely to do that,
what commands to issue, you need to find out from the documentation
for your compiler.
V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
.
|
|
|
| User: "James Kanze" |
|
| Title: Re: .c++ file |
29 Jun 2007 03:35:12 AM |
|
|
On Jun 28, 8:12 pm, "Victor Bazarov" <v.Abaza...@comAcast.net> wrote:
wrote:
On Jun 28, 5:06 pm, wrote:
I'm totally new to c++ and I don't know how to open a .c++ file.
I mean: how to run your c++ program?
You need to compile it. The compilation will result in a runable
(executable) file, eventually. As to how precisely to do that,
what commands to issue, you need to find out from the documentation
for your compiler.
Or system. Normally, the compiler is through once it's
generated the executable. On most systems, it's sufficient to
enter the name of the generated program on the command line, at
least if the compiler has generated it in the current directory
(the default for all compilers I know), and the current
directory is in your path. (How to ensure that the current
directory is in your path depends on the system.)
--
James Kanze (GABI Software) email:james.kanze@gmail.com
Conseils en informatique orient=E9e objet/
Beratung in objektorientierter Datenverarbeitung
9 place S=E9mard, 78210 St.-Cyr-l'=C9cole, France, +33 (0)1 30 23 00 34
.
|
|
|
|
|
|

|
Related Articles |
|
|