Click here to Skip to main content
15,898,371 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hello sir can you explain me
Is any run time is needed for c aplication (as .net application need framwork similar way what run time is needed for c )
Posted

There is a runtime, but the runtime is simply the OS of the machine where the C program runs on.
This is the reason why a program written for a windows machine does not run on a linux machine without taking any special actions.
 
Share this answer
 
No, C is a compiled and linked language that after link stage creates an exe file.

You will need to ensure that all the dependencies are there: imagine you make the app to work using a DLL, then that DLL will need to be in the place your app expects it to be.

Apart of that you won't need anything else.

Good luck!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900