answersLogoWhite

0

It depends on the implementation details of the compiler and on the settings contains in the various project files. By default, the output file (in unix) is named a.out and is located in the same directory as the source file, but that can be changed on the command line and in the makefile. More complex implementations, such as Microsoft Visual Studio, have project files where there is a fine degree of control. You need to look at these control files to locate the executable.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

What is a source code file in c plus plus?

A source code file is a plain-text file containing C++ instructions. The instructions must be compiled and linked to create a native machine code executable.


Can all C programs are executable in C plus plus?

Some C programs can be compiled in C++, yes.


What is the character used at the end of executable statements in C plus plus?

The semi-colon converts a C++ expression into a statement.


How do you export or publish c plus plus code into something more permanent like an application?

Compile and link it to produce a binary executable. You don't distribute your source code unless you are making the code publicly available (such as an open source application), you simply distribute the executable. Often the executable will be bundled with support libraries, help files, and so on, from which an installer can be built. You then distribute the installer and its support files.


How do you make a keylogger with visual basic 6 or the c plus plus and can you embed or bind it to a picture and make it hidden?

Image files are not executable. Therefore impossible. However, the only trick is to put your executable look like image using image icon and making the extension like this Mypicture.jpg.exe


Is there a file concept in c plus plus?

No. The standard does not define nor require a file concept.


How do you create .exe file in c plus plus?

You can create an exe-file from your C++ source, if you have a compiler.


How do you open a file in c plus plus?

fopen()


Which function is used to determine the position of the put pointer in a file in c plus plus?

The function ftell returns the position of the file pointer for a file.


What is step involve is using data file in c plus plus programming?

Declaration of file pointer opening of file in desired mode. performing the desired operation. closing the file


How do you concatinate two files in c plus plus?

Copy the first file then append the second file to the copy.


C plus plus reading and writing a file?

Use an input file stream (ifstream) to read from a file and an output file stream (ofstream) to write to a file. Both can be found in the <fstream> standard library header.