What is external and internal variables
What is dynamic memory allocation
what is storage classes in C
Answer Posted / rekha
Dynamic allocation is a pretty unique feature to C (amongst
high level languages). It enables us to create data types
and structures of any size and length to suit our programs
need within the program.
storage classes
auto
register
static
extern
typedef
| Is This Answer Correct ? | 5 Yes | 2 No |
Post New Answer View All Answers
What does volatile do?
Explain about the functions strcat() and strcmp()?
What is data structure in c programming?
Explain built-in function?
What is the difference between fread buffer() and fwrite buffer()?
write a program to print largest number of each row of a 2D array
What is the use of getch ()?
What are run-time errors?
Explain the binary height balanced tree?
What is storage class?
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
Why can’t we compare structures?
Describe the header file and its usage in c programming?
Where register variables are stored in c?
int i=10; printf("%d %d %d", i, i=20, i);