what are the stoge class in C and tel the scope and life time
of it?
Answer Posted / 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 View All Answers
Do you have any idea how to compare array with pointer in c?
What is an identifier?
What is the difference between single charater constant and string constant?
how can use subset in c program and give more example
Write a C program linear.c that creates a sequence of
processes with a given length. By
sequence it is meant that each created process has exactly
one child.
Let's look at some example outputs for the program.
Here the entire process sequence consists of process 18181:
Sara@dell:~/OSSS$ ./linear 1
Creating process sequence of length 1.
18181 begins the sequence.
An example for a sequence of length three:
Sara@dell:~/OSSS$ ./linear 3
Creating process sequence of length 3.
18233 begins the sequence.
18234 is child of 18233
18235 is child of 18234
........ this is coad .... BUt i could not compleate it .....:(
#include
What are the features of the c language?
When do we get logical errors?
What does 3 periods mean in texting?
Why is c called a structured programming language?
Explain the use of 'auto' keyword
c program to compute AREA under integral
Explain the use of function toupper() with and example code?
Explain what are binary trees?
What is static identifier?
Is python a c language?