what are the stoge class in C and tel the scope and life time
of it?

Answers were Sorted based on User's Feedback



what are the stoge class in C and tel the scope and life time of it?..

Answer / aruna.r

1.automatic
2.extern
3.static
4.register

Is This Answer Correct ?    11 Yes 0 No

what are the stoge class in C and tel the scope and life time of it?..

Answer / anudeep gongadi

1.automatic: the scope is within the function
2.extern: if variable is declared with extern, then that
variable is there in another program.and it can be used in
current program.
3.static: they are initialised only once.
4.register: limited memory is reserved for registers.
for faster access off data and computations, we mae use of
registers.

Is This Answer Correct ?    8 Yes 2 No

Post New Answer

More C Interview Questions

How can a string be converted to a number?

0 Answers  


What is sizeof array in c?

0 Answers  


Can a variable be both const and volatile?

0 Answers  


What is the difference between functions abs() and fabs()?

0 Answers  


What is difference between Structure and Unions?

0 Answers   TISL,






What is use of integral promotions in c?

0 Answers  


How many data structures are there in c?

0 Answers  


Compare interpreters and compilers.

0 Answers  


Differentiate between a structure and a union.

0 Answers   Zensar,


Write a program to compute the following 1!+2!+...n!

4 Answers  


what is self refrential structure

3 Answers   HCL,


How many types of sorting are there in c?

0 Answers  


Categories