Explain indirection?
Answer / Ajay Rametkar
Indirection in C is the process of using a variable that holds the address of another variable. This allows you to access or manipulate data through an intermediate variable (a pointer). Indirection can make your code more flexible and easier to manage, as it enables dynamic memory allocation and polymorphism.
| Is This Answer Correct ? | 0 Yes | 0 No |
number of times a digit is present in a number
How can I increase the allowable number of simultaneously open files?
can we print any string in c language without using semicolon(;)(terminator) in whole program.
What is difference between union and structure in c?
all c language question
What are the different types of endless loops?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} what would be the output?
how to TOGGLE Nth bit of variable in a MACRO
How can I access an I o board directly?
How can I find out the size of a file, prior to reading it in?
Why does not use getgh(); and <conio.h> in c language.
program for following output using for loop? 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5