what is pointer ? what is the use of pointer?
Answer Posted / guest
pointer is pointing to the addresss location
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What are data structures in c and how to use them?
Explain the properties of union.
Function calling procedures? and their differences? Why should one go for Call by Reference?
What is a structural principle?
Write a program to print fibonacci series using recursion?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
What is typedf?
please explain every phase in the "SDLC" in the dotnet.
Is it cc or c in a letter?
What is array in c with example?
Is c dynamically typed?
Write program to remove duplicate in an array?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
What is derived datatype in c?
Does c have an equivalent to pascals with statement?