what is difference b/w extern & volatile variable??
Answer Posted / deepa
extern is a keyword used to declare variables as global
varible.volatile variables are temporary variable
| Is This Answer Correct ? | 1 Yes | 7 No |
Post New Answer View All Answers
What do you understand by normalization of pointers?
Why structure is used in c?
Why is c faster?
What is the difference between procedural and declarative language?
What are the usage of pointer in c?
What is self-referential structure in c programming?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
Why do we use & in c?
why we wont use '&' sing in aceesing the string using scanf
What is character set?
What is c language used for?
What are identifiers and keywords in c?
What do you mean by recursion in c?
What is difference between main and void main?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above