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 does %c do in c?

0 Answers  


4.A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above

6 Answers   Accenture,


Magic square

0 Answers  


please give me some tips for the selection in TCS.

3 Answers   TCS,


In which layer of the network datastructure format change is done

0 Answers   Honeywell,






What is meant by operator precedence?

0 Answers  


Difference between pass by reference and pass by value?

0 Answers   TCS, TISL,


Write a programe print the sum of series 0,1,2,.....10

7 Answers  


What is a node in c?

0 Answers  


#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?

5 Answers   Ramco,


how to create duplicate link list using C???

0 Answers  


How can I recover the file name given an open stream?

0 Answers  


Categories