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
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
How can I discover how many arguments a function was actually called with?
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
When is a void pointer used?
What are the 4 types of unions?
What does c value mean?
Differentiate between calloc and malloc.
The statement, int(*x[]) () what does in indicate?
cavium networks written test pattern ..
What is the return type of sizeof?
Difference between goto, long jmp() and setjmp()?
Why we use void main in c?
Why can't I perform arithmetic on a void* pointer?
What is the explanation for cyclic nature of data types in c?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.