answersLogoWhite

0

How do you convert c exe to source code?

Updated: 12/8/2022
User Avatar

Dashang2526

Lvl 1
14y ago

Best Answer

Not possible.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you convert c exe to source code?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

what tool used to convert C++ source code into executable machine code?

Compliers are used to convert C++ into assembly code. Then a tool called an "assembler" converts that code into machine code. Finally, a "linker" connects all of those machine code files into a single executable.


How do you Convert C plus plus code to MIPS?

C++ is high-level source code, while MIPS is low-level machine code for a reduced instruction set computer (RISC). To convert C++ source code to MIPS you need a C++ compiler specific to the MIPS architecture you're building against.


What is the difference between exe and class files?

in .exe file it contains machine understandable code. but in .class file it contain only byte code which is not understadable by the microprocessor it will understud by the jvm only . we con't execute .class file without jvm . but we can execute .exe file without c-compiler .


What is computer program in c plus plus?

The C++ standard does not impose any extension rules on source code files. Conventionally, all C++ headers use a .h extension while all C++ source files use a .cpp extension, however you are free to choose your own extensions as you see fit. Some programmers prefer .hpp for C++ headers in order to differentiate them from C headers, however there's no requirement to do so unless you are specifically differentiating C-style headers from C++ headers. Similarly with .c and .cpp extensions with respect to C-style code and C++ code. In the main it's best to stick with the well-established conventions.


C code for?

It's used to make simple program using a compiler such as visual basics which is a windows program that makes .exe files. C was made so programmers could easily and quickly make programs, a compiler convert the C coding into binary and allows it to be opened with your specifix operating system.

Related questions

How do you convert .c extension to .exe?

To convert source code (.c file) to an executable (.exe) file you have to use a compiler, which is a translator of source code to machine code.


How do you call an exe file in c source code?

system, exec*, spawn*, CreateProcess, ShellExecute...


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.


Convert .exe file to .sis formate using C language?

love


what tool used to convert C++ source code into executable machine code?

Compliers are used to convert C++ into assembly code. Then a tool called an "assembler" converts that code into machine code. Finally, a "linker" connects all of those machine code files into a single executable.


How do you Convert C plus plus code to MIPS?

C++ is high-level source code, while MIPS is low-level machine code for a reduced instruction set computer (RISC). To convert C++ source code to MIPS you need a C++ compiler specific to the MIPS architecture you're building against.


You have Vista home 64 bit as operating system and it does not support C programming What should you do.?

A program in C usually compiles to a regular .exe on Windows, so Windows Vista Home 64 bit (or any other Windows system, for that matter) should run a program written in C just fine. The thing is that you shouldn't count on Windows having a C compiler installed by default (unlike Linux or Mac which typically come with gcc pre-installed), so you won't be able to compile C source code on your machine unless you install a compiler separately. The difference between source code and a compiled .exe is that source code is human-readable and editable in any simple text editor like Notepad, while a compiled .exe looks like gibberish in a text editor. If in doubt as to whether a C program file on your computer is source code or not, you can check the extension (C source files usually end in ".c"; compiled C files often end in ".exe", or more generally just something that's not ".c") or try to open it in Notepad. There are a variety of C compilers available for Windows Vista, such as Bloodshed (http://www.bloodshed.net/devcpp.html) and MinGW (http://www.mingw.org/). I think this means that your TurboC isn't working properly. Use something newer!


What is the difference between exe and class files?

in .exe file it contains machine understandable code. but in .class file it contain only byte code which is not understadable by the microprocessor it will understud by the jvm only . we con't execute .class file without jvm . but we can execute .exe file without c-compiler .


Getting source code of c?

C is a programming language, so it doesn't have source code.(On the other hand, C compilers do have source code, but you, as a beginner in programming, could not understand them.)


How do you Open a text file as C plus plus source code?

All C++ source code is is a text file with the .cpp extension. So if you save your code as *****.cpp then it is automatically C++ source code.


What is the source code for scientific calculator in c?

What is the source code for scientific calculator in c?Read more: What_is_the_source_code_for_scientific_calculator_in_c


What is computer program in c plus plus?

The C++ standard does not impose any extension rules on source code files. Conventionally, all C++ headers use a .h extension while all C++ source files use a .cpp extension, however you are free to choose your own extensions as you see fit. Some programmers prefer .hpp for C++ headers in order to differentiate them from C headers, however there's no requirement to do so unless you are specifically differentiating C-style headers from C++ headers. Similarly with .c and .cpp extensions with respect to C-style code and C++ code. In the main it's best to stick with the well-established conventions.