what is a constant pointer in C
Answer / Navneet Sonkar
"A constant pointer (also known as a pointer to const) in C is a pointer that points to a constant. In other words, it's a variable whose value cannot be changed but can still be manipulated through the pointer."n
| Is This Answer Correct ? | 0 Yes | 0 No |
What’s a signal? Explain what do I use signals for?
What are external variables in c?
Differentiate call by value and call by reference?
Tell me about low level programming languages.
Write a program in C to convert date displayed in gregorian to julian date
What is formal argument?
main() { float a=3.2e40; printf("%d",a); }
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
Why ca not I do something like this?
What does the function toupper() do?
What is a MAC Address?
If "AaBbCc" is passed to the char char x(*a) { a[0]?x(a+1):1; printf("%c",a[0]); return 1; } what will be the output?