answersLogoWhite

0

Where is the c program stored?

Updated: 11/21/2022
User Avatar

Wiki User

14y ago

Best Answer

Text files, mainly. The name of the files usually ends with .C and .H (lowercase in unix).

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Where is the c program stored?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How c program gets stored in the memory?

Binary object code executable.


What is the default path for the folder where the active directory log file will be stored?

program file in c:\ drive


Where the program is stored?

Text files, mainly. The name of the files usually ends with .C and .H (lowercase in unix).


Where is the OS master program stored?

the master program of OS is stored in ROM.


What is the meaning of this term Stored Program Concept?

a program that is stored in the memory of the computer that executes it


What is a C variable?

A variable is an entity that may change its value. In a program, the result of the processing statements are stored in the computer's memory.


In what folder are 32-bit programs stored by a 64-bit edition of windows vista?

C:\Program Files (x86)\ is the default folder for 32-bit applications on 64-bit Windows.


Is vitamin c stored in bones?

No , vitamin c is not stored in bone . Actually it can't be stored in body . It is because both vitamin B and C are water soluble hence can't be stored .


Where is engery in a polysaccharide stored?

It is stored in the chemical bonds, for example C-C, C-H, C-O, O-H.


Who is credited with creating the stored program computer model?

The concept of stored program was presented by Dr.John Von Neumann.


Program code is stored in?

Memory.


Where does global static local register variables free memory and C Program instructions get stored?

* These are all implementation defined. Access to `register' specified indentifiers should be as fast as possible, so the compiler may place the value in a machine register. However, the compiler is free to treat a `register' declaration as an `auto' declaration. * Where free memory is maintained is an OS specific concept. Instructions are generally stored in code segement. Local Variables are stored in Stack. Register variables are stored in Register. Global & static variables are stored in data segment. The memory created dynamically are stored in Heap And the C program instructions get stored in code segment.