what is pointer ? what is the use of pointer?
Answer Posted / sri harsha
pointer is lock to house.house is any data.mainly for
saving space,security we will use pointers.
Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Explain void pointer?
what is a function method?give example?
How do c compilers work?
Define VARIABLE?
What is a substring in c?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
How do I read the arrow keys? What about function keys?
How to write a multi-statement macro?
Write a program to print numbers from 1 to 100 without using loop in c?
How can you find out how much memory is available?
illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question
What is difference between structure and union in c?
Explain can static variables be declared in a header file?
Why doesnt that code work?
what is use of malloc and calloc?