Software Making
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
Does anyone know how c language is used to make a software. Normally we run small c programs in a compiler but what is actualy done in making a software ........
-
Does anyone know how c language is used to make a software. Normally we run small c programs in a compiler but what is actualy done in making a software ........
What do you mean by "making a software "? The normal process, is that the compiler converts C language into object modules, and the linker combines object modules and libraries to create an executable program. Google will find you more detailed explanations it you need them.