what is a pointer

Answers were Sorted based on User's Feedback



what is a pointer..

Answer / chaitali anand tendulkar

A pointer is a variable which contains a address in memory
of another variable. in other words it is a address of
variable.

Is This Answer Correct ?    27 Yes 2 No

what is a pointer..

Answer / roshan

In a simple word.....
A pointer is a variable which is store the address of another variable.

Is This Answer Correct ?    11 Yes 1 No

what is a pointer..

Answer / anil yadav

A pointer is a variable which contains the address in memory of another variable. We can have a pointer to any variable type....

Is This Answer Correct ?    4 Yes 0 No

what is a pointer..

Answer / joshi

Pointer is a special variable which hold the address of the
next variable.

Is This Answer Correct ?    3 Yes 2 No

Post New Answer

More C Interview Questions

What are the 5 data types?

0 Answers  


Write a program to print prime nums from 1-20 using c programing?

13 Answers   IBM,


12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV

4 Answers   Accenture,


write the function int countchtr(char string[],int ch);which returns the number of timesthe character ch appears in the string. for example the call countchtr("she lives in Newyork",'e') would return 3.

6 Answers  


What is the use of typedef in c?

0 Answers  


What is the difference between NULL and NUL?

0 Answers   Aspire, Infogain,


Concat two string with most overlapped substring has to remove  "abcd"+ "cdef" = "abcdef

6 Answers  


How can I make a program in c to print 'Hello' without using semicolon in the code?

9 Answers   C DAC, Practical Viva Questions,


write a program to find a given no. is divisible by 3 or not without using any arthimetic operators?

3 Answers   Broadcom, TCS,


What are the types of macro formats?

0 Answers  


What does 4d mean in c?

0 Answers  


How do you write a program which produces its own source code as output?

0 Answers  


Categories