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
Why we use break in c?
What are the complete rules for header file searching?
Differentiate fundamental data types and derived data types in C.
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
What is structure padding in c?
How do I copy files?
what is the structure pointer?
How can I write a function analogous to scanf?
What does %d do in c?
How can a string be converted to a number?
Explain what are its uses in c programming?
What is f'n in math?
What are the types of i/o functions?
Explain how can I open a file so that other programs can update it at the same time?
How can I delete a file?