what is pointer?

Answers were Sorted based on User's Feedback



what is pointer?..

Answer / guest

a pointer is a a variable that contains the address of an
another variable

Is This Answer Correct ?    1 Yes 1 No

what is pointer?..

Answer / gyanendra

Pointer is used to store address of any variable.
int a,*p;
p=&a//p store address of a

Is This Answer Correct ?    0 Yes 0 No

what is pointer?..

Answer / j naveen reddy

Pointer is a reference variable, as it refers the address of the other variable

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

Explain the properties of union.

0 Answers  


Differentiate b/w Modify and Update commands giving example.

1 Answers  


Which of the following about the C comments is incorrect ? a.commentscan go over multiple lines b.comments can start any where in the line c.a line can contain comments with out any language statements d.comments can occur within comments

6 Answers   TCS,


Which of the following sorts is quickest when sorting the following set: 1 2 3 5 4 1) Quick Sort 2) Bubble Sort 3) Merge Sort

7 Answers  


How can I sort a linked list?

0 Answers  






Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon

0 Answers  


Finding first/last occurrence of a character in a string without using strchr( ) /strrchr( ) function.

2 Answers  


What is the meaning of ?

0 Answers  


Why is c platform dependent?

0 Answers  


why Language C is plateform dependent

3 Answers   Siemens, Wipro,


C program to read the integer and calculate sum and average using single dimensional array

0 Answers  


What does 4d mean in c?

0 Answers  


Categories