Answer Posted / chaitali anand tendulkar
A pointer is a variable which contains a address in memory
of another variable. in other words it is a address of
variable.
| Is This Answer Correct ? | 27 Yes | 2 No |
Post New Answer View All Answers
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
With the help of using classes, write a program to add two numbers.
What's a good way to check for "close enough" floating-point equality?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What is realloc in c?
What do you mean by dynamic memory allocation in c?
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
What is a null string in c?
What does printf does?
Why do we use int main instead of void main in c?
How can you invoke another program from within a C program?
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
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
What does the c in ctime mean?
How can I direct output to the printer?