what is pointer?

Answer Posted / vijay r15

pointer denotes the address of a variable

*denotes its a ptr var
Ex
Int a; //ordin var
Int *p; //ptr var going to hold sum address
P=&a; //p holds the address of a

With thanks and regards,
Vijay r15

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What does stand for?

582


What is the difference between int main and void main in c?

581


Why can't I perform arithmetic on a void* pointer?

626


Explain what are the advantages and disadvantages of a heap?

589


What is a pointer on a pointer in c programming language?

606






What is the c language function prototype?

633


What are the different types of errors?

631


Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..

638


Explain how can you tell whether two strings are the same?

574


What is the 'named constructor idiom'?

629


Is c high or low level?

567


Explain goto?

704


5 Write an Algorithm to find the maximum and minimum items in a set of ā€˜nā€™ element.

1571


Are c and c++ the same?

619


Write a program for Overriding.

669