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
How do we open a binary file in Read/Write mode in C?
What is function prototype in c with example?
Why pointers are used in c?
What is openmp in c?
How many levels of pointers can you have?
Which is an example of a structural homology?
What is a stream in c programming?
The difference between printf and fprintf is ?
What is #include stdlib h?
Describe the difference between = and == symbols in c programming?
Explain how can I make sure that my program is the only one accessing a file?
Is array a primitive data type in c?
Explain setjmp()?
Is fortran still used today?
What are multibyte characters?