can we store values and addresses in the same array? explain
Answers were Sorted based on User's Feedback
Answer / sri
we can store values and address in same ,by using
datastructures concept
Is This Answer Correct ? | 15 Yes | 1 No |
Answer / rakesh
Yes, We can Store Value and Address in the Same Array using the LinkedList Concept of the Data & File Structure.
Is This Answer Correct ? | 12 Yes | 0 No |
Not because value we can store but address is we can't store
that is default address we can't change that value
Is This Answer Correct ? | 4 Yes | 3 No |
ABCDCBA ABC CBA AB BA A A
#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}
Difference between MAC vs. IP Addressing
int a=0,b=2; if (a=0) b=0; else b=*10; What is the value of b ?
What is the use of typedef in structure in c?
Which is more efficient, a switch statement or an if else chain?
with out using main how to execute the program?
Write a code of a general series where the next element is the sum of last k terms.
How can I do peek and poke in c?
What is the difference between near, far and huge pointers?
How do you access command-line arguments?
What is time complexity c?