2. What does static variable mean?
Answers were Sorted based on User's Feedback
Answer / sai
static variable in c defined as the value of the static
variable is fixed in that program.
That means the chages will not effect the static variable
values.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / avik bagh
A static variable is a variable that you can call and use without using an object of the class it is a part of. You can use a static variable using just the class name.
| Is This Answer Correct ? | 1 Yes | 0 No |
writw a program to insert an element in the begning of a doubly linked list
What is the use of header files?
what is the return value (status code) of exit() function.... what the arguments(integer value) passed to it means....
What is the correct declaration of main?
How can I insert or delete a line (or record) in the middle of a file?
Write a program to show the workingof auto variable.
Explain argument and its types.
pgm in c to reverse string by word using array(god is love becomes love is god) (no additional array can used,space is only delimiter between words )
Why are algorithms important in c program?
sum of two integers values only other then integer it should print invalid input.
Can we declare function inside main?
we all know about the function overloading concept used in C++ and we all learnt abt that.... but that concept is already came in C in a very smaller propotion ... my question is IN WHICH CONCEPT THERE IS A USE OF FUNCTION OVERLOADING IS USED in C language?????????????