a way in which a pointer stores the address of a pointer which stores the value of the target value
a) reference
b) allocation
c) multiple indirection
d) none
What is the difference between array and linked list in c?
What are the different types of control structures in programming?
What is getch() function?
What do you mean by recursion in c?
How to implement call back functions ?
Difference between MAC vs. IP Addressing
int i=~0; uint j=(uint)i; j++; printf(“%d”,j);
C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
write a program to find the largest and second largest integer from an array
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
How to avoid structure padding in C?
How do I declare a pointer to an array?