what are the static variables
Answer Posted / smriti patnaik
static variables are variables that are initiated only once
in a memory,suppose u have initiated a variable as static
everytime u visit a iteration the value is changed 4m the
initialised value,not like auto variables where the values
remain same everytime u visit a iteration
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Why isn't any of this standardized in c? Any real program has to do some of these things.
write an algorithm to display a square matrix.
How do you define a function?
Which is better oop or procedural?
How can I send mail from within a c program?
What are the advantages and disadvantages of c language?
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
How to throw some light on the b tree?
What are the different types of control structures in programming?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
What is operator precedence?
Explain the use of #pragma exit?
where are auto variables stored? What are the characteristics of an auto variable?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon