What is meant by global static? why we have to use static
variable instead of Global variable
Answer Posted / guest
Static is protected one and you cannot acess the variable
in other files/functions.It is declared in the top of the
file/function.The value retains tho,t the program.
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
Write the test cases for checking a variable having value in range -10.0 to +10.0?
What is the advantage of using #define to declare a constant?
how could explain about job profile
What are reserved words?
Did c have any year 2000 problems?
What are formal parameters?
How can this be legal c?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
Difference between MAC vs. IP Addressing
What do you mean by dynamic memory allocation in c?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
what do u mean by Direct access files? then can u explain about Direct Access Files?
`write a program to display the recomended action depends on a color of trafic light using nested if statments
Explain logical errors? Compare with syntax errors.
What is difference between structure and union with example?