What are pointers in C?

Answer Posted / esakkimuthu.s.

pointer is a variable which contain the address of another variable.pointer variable must be declare with * operator

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is c language in simple words?

595


What is the use of getchar functions?

676


What does node * mean?

713


Explain that why C is procedural?

660


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(); }

1859






What is identifiers in c with examples?

677


What is a void pointer in c?

608


Which of the following operators is incorrect and why? ( >=, <=, <>, ==)

668


Explain about the constants which help in debugging?

855


write a c program to calculate sum of digits till it reduces to a single digit using recursion

2721


Explain indirection?

648


What is dynamic dispatch in c++?

558


regarding pointers concept

1575


What is the purpose of ftell?

601


Multiply an Integer Number by 2 Without Using Multiplication Operator

321