What Is Pointer?

Answers were Sorted based on User's Feedback



What Is Pointer?..

Answer / sachin atre

Pointer is nothing but the variable which stores the address(memory location) of another variable.
Pointers are not supported in Java but they are applicable in c,c++ languages.

Is This Answer Correct ?    9 Yes 0 No

What Is Pointer?..

Answer / singh vikas

implements two ways of representing object pointers. (An
object pointer, C type object, contains a pointer to the
memory location of the object, or - for immediate object -
all bits of the object itself.) Both of them have some
things in common:

Is This Answer Correct ?    1 Yes 0 No

What Is Pointer?..

Answer / mohit choudhary

POINTER IS A SPECIAL VERIABLE WHICH CAN CONYTAIN A ADDRESS
OF THE ANOTHER VERIABLE IN THE CLASS

Is This Answer Correct ?    1 Yes 0 No

What Is Pointer?..

Answer / n.v.swami reddy

pointer is variable which holds the address of nother
variable is called pointer.
pointer concept does not support the java.it only for c,c++,


EXAMPLE PROGRAM FOR C:
MAIN()
{
int *a=25;/*it print the value address of the a variable
value*/
int b=a;/*a value assign b*/
int c=&b;/*it print the value of the b*/
printf("%d",*a);
printf("%d",b);
printf("%d",c);
getch();
}

OUTPUT:
245 ADDRESS OF A
25
25

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

what is mean by String and StringBuffer? What is mean by Methooverriding and Overloading?

2 Answers   Satyam,


What is the difference between post and put?

0 Answers  


What are 5 boolean operators?

0 Answers  


Is heap stored in ram?

0 Answers  


Can we create an object of private class?

0 Answers  






When should a function throw an exception?

0 Answers   Thomson Reuters, Virtusa,


When is the arraystoreexception thrown?

0 Answers  


What is your platform?s default character encoding and how to know this?

0 Answers   TCS,


Explain method local inner classes ?

0 Answers  


Can we have try without catch block?

0 Answers  


how its run?

0 Answers  


What are inbuilt functions in java?

0 Answers  


Categories