What is a const pointer?
Answer / Neeraj Kumar Rathour
A const pointer in C is a pointer that points to a constant (non-modifiable) memory location. It can point to any variable, but once it does, the value of the variable cannot be changed through that pointer.
| Is This Answer Correct ? | 0 Yes | 0 No |
a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
what does ‘Bus Error’ mean?
Explain how do you sort filenames in a directory?
what is the difference between c and java?
Why array is used in c?
Hai friends im a i year student. i want to develop my knowledge in the field of TSR in c. How I'm Improve ?
what is pointer?
What are signals in C?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?