what are the stoge class in C and tel the scope and life time
of it?
Answers were Sorted based on User's Feedback
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 |
Please write me a program to print the first 50 prime numbers (NOT between the range 1 -50)
Why do some versions of toupper act strangely if given an upper-case letter?
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
Lists the benefits of c programming language?
Find the output? void main() {float a=2.0; printf("\nSize of a ::%d",sizeof(a)); printf("\nSize of 2.0 ::%d",sizeof(2.0));}
11 Answers IBM, TCS,
Write a simple code fragment that will check if a number is positive or negative.
In a header file whether functions are declared or defined?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
What is volatile variable in c?
for (i <= 5 && i >= -1;++i; i > 0) { printf("%d ", i); }
what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))".provide an explation regarding the question
`write a program to display the recomended action depends on a color of trafic light using nested if statments