How to access or modify the const variable in c ?
Answer Posted / guest
use pointers and u can do anything...
| Is This Answer Correct ? | 23 Yes | 17 No |
Post New Answer View All Answers
What are valid operations on pointers?
Create a simple code fragment that will swap the values of two variables num1 and num2.
Tell me is null always defined as 0(zero)?
Write a program in c to replace any vowel in a string with z?
i have to apply for rbi before that i need to know the the syllabus for the entrance questions. whethet it may be aps or techinical
How the c program is executed?
How do I determine whether a character is numeric, alphabetic, and so on?
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?
When we use void main and int main?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
What are data structures in c and how to use them?
Did c have any year 2000 problems?
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
Explain the use of bit fieild.
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply