extern static int i
func()
{
i =10;
i++;
printf("%d \n",i);
}
main()
{
i =20;
printf("%d \n",i);
func();
printf("%d \n",i);
}
Answer Posted / ashwini prakash
output will be..
20
11
20
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
What is a lookup table in c?
Explain what is the benefit of using #define to declare a constant?
explain what is a newline escape sequence?
Explain how can I convert a string to a number?
Where does the name "C" come from, anyway?
Why is python slower than c?
Explain what is operator promotion?
What are the advantages and disadvantages of c language?
Describe explain how arrays can be passed to a user defined function
What does dm mean sexually?
What is sizeof array in c?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
What are qualifiers in c?
Explain the process of converting a Tree into a Binary Tree.
What is c token?