Explain pointers in c programming?



Explain pointers in c programming?..

Answer / Juheb Ahmad

"Pointers in C Programming are variables that store the memory addresses of other variables. They allow direct manipulation of memory, and can be used to create dynamic data structures like arrays, linked lists, trees etc."

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

what is the use of a array in c

6 Answers  


# define prod(a,b)=a*b main() { int x=2; int y=3; printf("%d",prod(x+2,y-10)); } the output of the program is a.8 b.6 c.7 d.none

7 Answers   Microsoft, TCS,


What is a header file?

1 Answers  


code for replace tabs with equivalent number of blanks

1 Answers   Bosch,


multiple of 9 without useing +,* oprator

3 Answers  


what is the output of the following program and explain the answer #include<stdio.h> exp() { main(5) } main(int a) { printf("%d",a); return; }

3 Answers   Satyam,


What is a function in c?

3 Answers  


Multiply an Integer Number by 2 Without Using Multiplication Operator

1 Answers  


How many ways are there to swap two numbers without using temporary variable? Give the each logic.

9 Answers  


What is the use of putchar function?

1 Answers  


Differentiate between the = symbol and == symbol?

1 Answers  


What happens if a header file is included twice?

1 Answers  


Categories