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 |
what is the use of a array in c
# 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
What is a header file?
code for replace tabs with equivalent number of blanks
multiple of 9 without useing +,* oprator
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; }
What is a function in c?
Multiply an Integer Number by 2 Without Using Multiplication Operator
How many ways are there to swap two numbers without using temporary variable? Give the each logic.
What is the use of putchar function?
Differentiate between the = symbol and == symbol?
What happens if a header file is included twice?