C Programming Question and Answers
65. | What is wild pointer in C? |
---|---|
Uninitialized pointers are called as wild pointers in C which points to arbitrary (random) memory location. This wild pointer may lead a program to behave wrongly or to crash. | |
66. | Can a variable be both const and volatile? |
---|---|
|
|
67. | List out some of C compilers? |
---|---|
There are so many compilers available in market for Windows operating system and UNIX. We are listing some of them here for your reference.
|
|
68. | What is void in C? |
---|---|
Void is an empty data type that has no value. We use void data type in functions when we don't want to return any value to the calling functions. | |