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
will u please send me the placement papers to my mail???????????????????
What is an operator?
i want to switch my career from quailty assurance engineering to development kindly guide me from which programming language its better for me to start plz refer some courses or certifications too i have an experience of 1.5 yrs in QA field.Kindly guide me
What are disadvantages of C language.
What are pointers in C? Give an example where to illustrate their significance.
What is void pointers in c?
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
How to write c functions that modify head pointer of a linked list?
Write a program to swap two numbers without using the third variable?
What kind of structure is a house?
What is external variable in c?
What is multidimensional arrays
What is malloc and calloc?
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.