What is meant by global static? why we have to use static
variable instead of Global variable
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / vaibhav
global static means the static value declared as a
global.using this we can share same copy of that variable.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / indira amit
Variables defined local to a function disappear at the end
of the function scope. So when we call the function again,
storage for variables is created and
values are reinitialized. So if we want the value to be
extent throughout the life of a program, we can define the
local variable as "static." Initialization is performed only
at the first call and data is retained between func calls.
Had it been gloal variable, it would have been available
outside the scope of the function, but static variable is
not available outside the scope of a function (helpful in
localizing errors - as it can't be changed outside the func
scope).
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / abdur rab
Static remains throughout the program, however its scope is
limited to that file alone. If a program consists of
multiple files, you want a variable to be seen by the
entire file and do not want that variable to be seen by the
other files, then mark is as static
static int a;
as a global variable
| Is This Answer Correct ? | 2 Yes | 3 No |
Is it better to bitshift a value than to multiply by 2?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
give one ip, find out which contry
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
What is the difference between void main() and int main()?
Write a program to find minimum between three no.s whithout using comparison operator.
printf("%d",(printf("Hello")); What it returns?
A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
Write a program to implement queue.
#include<stdio.h> main() { int i=5; printf("%d",i*i-- - --i*i*i++ + ++i); } tell the answer with correct reason .specially reason is important nt answer ans by turbo c is -39
how to sort two array of characters and make a new array of characters.
How many parameters should a function have?