Answer Posted / babu
Declaraton an obj const announces that its value will not
be changed;declaring it Volatile announces that it has
special properties relevent to optimization[change].
| Is This Answer Correct ? | 28 Yes | 4 No |
Post New Answer View All Answers
What is string constants?
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
What are extern variables in c?
Why c is called free form language?
What are the advantages of using linked list for tree construction?
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
What extern c means?
what does static variable mean?
State the difference between x3 and x[3].
What is c mainly used for?
What is data structure in c and its types?
What is the difference between a string and an array?
Explain the difference between malloc() and calloc() function?
What are the two forms of #include directive?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol