-
can an one tell me that how to create exe file for C-program?0
-
Member • Jan 1, 2013
To create an exe of C program u need to compile that program. The steps for same will differ based on which IDE u r using. So u can tell us the IDE, compiler and OS u r using, for more specific steps if needed😁 .Manohar goudcan an one tell me that how to create exe file for C-program?
Good Luck!Are you sure? This action cannot be undone. -
Member • Jan 2, 2013
I think the exe file created automatically when you run a C program!Are you sure? This action cannot be undone. -
Member • Jan 2, 2013
I think the exe file created automatically when you run a C program
well to enlighten you whenever a c sample program is compiled then an object file is created with the same name as the c source code file. This object file has an extension .o(in linux ) or .obj (in windows operating system). Once this object file has been created the next step is to link this object file with the help of another program module called as linker. This software links the c libraries(as and where required) with the statements written in the object file. Upon successful linking process, an executable file is automatically created in the same folder itself unless the IDE is modified.
In most of the IDEs that we have today, an option build is engaged. this build operation is equivalent to the process of compilation followed by linking.Are you sure? This action cannot be undone. -
Member • Jan 7, 2013
But where this .exe file has stored and how can i get it?proffywell to enlighten you whenever a c sample program is compiled then an object file is created with the same name as the c source code file. This object file has an extension .o(in linux ) or .obj (in windows operating system). Once this object file has been created the next step is to link this object file with the help of another program module called as linker. This software links the c libraries(as and where required) with the statements written in the object file. Upon successful linking process, an executable file is automatically created in the same folder itself unless the IDE is modified.
In most of the IDEs that we have today, an option build is engaged. this build operation is equivalent to the process of compilation followed by linking.Are you sure? This action cannot be undone. -
Member • Jan 7, 2013
Mostly, the exe file is in the same folder as your C file, but depending on IDE it may differ, as for DEV C compiler it is inside the same folder, but in VC++, inside ur specific project folder, there is a debug folder in which exe is placed.Manohar goudBut where this .exe file has stored and how can i get it?Are you sure? This action cannot be undone. -
Member • Jan 18, 2013
I sincerely doubt that this will work, as creation of executable is not a simple process of storing the ASCII codes(which u seem to do). It involves preprocessing, compiling, linking, loading etc. And the data is stored in the binary format (I think) rather than simple numeric codes.Tony MccallumHello Community,
An "exe" file is an executable file or a program file. To create an "exe" file in Notepad, you must understand and know a programming language such as C++. With Notepad, users are able create an the file with software already found on their computer.
1. Open Notepad on your computer. Notepad is located in the "Accessories" folder of the computer's "Program Files".
2. Hold down the "Alt" key and use the number pad to type in every 3-digit combinations from 000 to 999. After each 3-digit combination, release the "Alt" key.Are you sure? This action cannot be undone.