In which area global, external variables are stored?
Answer Posted / vishnu
Global variables if not initialised when decleared then it
will be stored in BSS(Block Segmented by Symbol). If it is
initilised then it will be stored in Data area.
Extern variables are stored int Data area.
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
What are the two types of functions in c?
What is function prototype in c with example?
What is a protocol in c?
how to execute a program using if else condition and the output should enter number and the number is odd only...
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
What does printf does?
Is main is user defined function?
Explain what is the difference between far and near ?
Why is C language being considered a middle level language?
What do you mean by Recursion Function?
What is the purpose of scanf() and printf() functions?
Discuss the function of conditional operator, size of operator and comma operator with examples.
What is c programming structure?
Write a program to use switch statement.