answersLogoWhite

0


Best Answer

.exe on some platforms

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the extension of executable version of c program?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the extension of the executable version of a c program?

It is 'EXE' on some platforms.


What is the extension of the executable version of a c program other than exe?

In WinDos it is .exe, in Unix executables usually have no extensions.


Why the extension cpp of c?

The extension of a file containing a C program can be any extension, so long as the compiler or platform can infer the proper rules to build it. Commonly, for C programs, the extension is .c, so myfile.c would be a C program. The term cpp is not a designation for C++. It means C Program Precompiler, and it is the normal way to build one or more C programs into an executable. Over the years, cpp has evolved into being able to handle all sorts of languages. C++ is one of them. Typical extensions for C++ programs are .cc, .cpp, and .cxx.


What is the extension of C programming?

The extension of c program is ".c".


How a c program execute?

Compile and link it into an executable.


How do you open a C file as an executible file?

In a canonical C compiler, you type "cc (program file name).c (return) and it spits out "a.out", which is an executable. Works with the original Kernighan and Ritchie C compiler. For C++, use the .cpp extension and "g++" for the compiler: In a terminal window, on MacOS, 'cc (program name).c (return)' 'g++ (program name).cpp (return)' produces an executable named "a.out", which can be run. '-o (some file name . extension) will change the output file name.


How is a C program rum?

C-source program doesn't rum, you have to compile and link it. The executable rums like any other binary program.


Is Word an executable file?

In Windows, the location isc:\Program Files\Microsoft Office\OFFICE{X}\winword.exewhere {X} represents a version number for Microsoft Office. Office 2007 is 12, Office 2003 is 11.


How does a compiler interpret the difference between c and c plus plus?

from the extension of your file.If it has an extension of .cpp then it is a c++ programIf it's extension is .c, then it is a C program.


How c program gets stored in the memory?

Binary object code executable.


Can you write a program without main in c?

Certainly, you can write a program without main, but you cannot build an executable from it, if that is okay with you.


Programming process of c language?

Write the source program. Compile. Link executable. Run it.