what are the static variables
Answer Posted / mahendranath reddy ,cudpha
static int xx;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Can static variables be declared in a header file?
What is the value of uninitialized variable in c?
What is const volatile variable in c?
Which one would you prefer - a macro or a function?
What is data structure in c and its types?
How do you search data in a data file using random access method?
What are the 4 data types?
What are the keywords in c?
How are strings stored in c?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
How pointers are declared?
What is the difference between int main and void main in c?
int far *near * p; means
What is printf () in c?
Explain null pointer.