What is static memory allocation? Explain


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is the use of function overloading in C?

0 Answers   Ittiam Systems,


#&#8206;include&#8236;<stdio.h> void main() { int i; for(i=5;0;i++) { printf("%d",i); } }

2 Answers   Facebook,


How to write the code of the program to swap two numbers with in one statement?

2 Answers  


What does void main () mean?

0 Answers  


int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above

0 Answers  


explain how do you use macro?

0 Answers  


What is meant by preprocessor in c?

0 Answers  


suppose we use switch statement and we intilize years name using enum statement like(jan,feb,mar,------dec) we take integer value as an input .question is that the month which we analyz is from 0 to 11 bt if i enter 12 than how he again starts from begning and print jan

1 Answers  


what is the size of an integer variable?

4 Answers  


#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300

4 Answers   Tieto,


What is a global variable in c?

0 Answers  


change to postfix a/(b+c*d-e)

8 Answers   Value Labs,


Categories