What is external and internal variables
What is dynamic memory allocation
what is storage classes in C
Answer Posted / ravi saini
External variable -- Variable that one going to be access
from another source file.Have life cycle for complete project.
Internal variable -- variable that one have the life cycle
for the particular block.
Dynamic memory allocation --Allocation of memory during RUN
time.
Storage Class --
Automatic : by default
Register : Use to access registers of CPU.If register is not
free than work as automatic.
Static : Have life cycle for whole project but access only
with in the initialized function block.Once initialized.
extern : above
Is This Answer Correct ? | 11 Yes | 1 No |
Post New Answer View All Answers
What is console in c language?
is it possible to create your own header files?
What are the parts of c program?
Is that possible to add pointers to each other?
Is there sort function in c?
What is an operator?
What does volatile do?
What is the purpose of void pointer?
What is pragma in c?
What is malloc() function?
Explain what are compound statements?
What is the difference between array and pointer in c?
What is the difference between char array and char pointer?
Explain how are 16- and 32-bit numbers stored?
What is the difference between new and malloc functions?