What are pointers in C?

Answers were Sorted based on User's Feedback



What are pointers in C?..

Answer / sagar hande

Pointer is variable that contains memory location of
another variable

Is This Answer Correct ?    33 Yes 0 No

What are pointers in C?..

Answer / mukesh kumar

pointer is variable it contain's or store the address of
other variable.

Is This Answer Correct ?    13 Yes 0 No

What are pointers in C?..

Answer / tarun gupta

Pointer is a variable. that contain's the M/r location of
another variable.

Is This Answer Correct ?    5 Yes 0 No

What are pointers in C?..

Answer / esakkimuthu.s.

pointer is a variable which contain the address of another variable.pointer variable must be declare with * operator

Is This Answer Correct ?    3 Yes 0 No

What are pointers in C?..

Answer / rajgopal

pointer is variable which store the addrss of another variable

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }

7 Answers   HCL,


20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????

2 Answers  


What is the difference between mpi and openmp?

0 Answers  


Write a programme to find even numbers without using any conditional statement?

3 Answers   ADD Software, Infosys,


Why is void main used?

0 Answers  






proc() { static i=10; printf("%d",i); } If this proc() is called second time, what is the output?

7 Answers   Hughes,


What is a static function in c?

0 Answers  


int a=20; int b=30; int c=40; printf("%d%d%d"); what will be the output?

5 Answers   CMC,


What does a pointer variable always consist of?

0 Answers  


What does main () mean in c?

0 Answers  


When should I declare a function?

0 Answers  


What is static memory allocation?

0 Answers  


Categories