what are the static variables
Answer Posted / subha raman
I have a doubt..what is the difference between.."static"
and "constant(const)"??
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
Why do we need a structure?
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
What is an auto keyword in c?
What is a spanning Tree?
What are the different types of endless loops?
What is a pointer and how it is initialized?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
What do you know about the use of bit field?
What functions are used for dynamic memory allocation in c language?
what are bit fields? What is the use of bit fields in a structure declaration?
What are linked lists in c?
How can you determine the size of an allocated portion of memory?
How can I implement a delay, or time a users response, with sub-second resolution?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
What does *p++ do? What does it point to?