can we store values and addresses in the same array? explain

Answers were Sorted based on User's Feedback



can we store values and addresses in the same array? explain..

Answer / sri

we can store values and address in same ,by using
datastructures concept

Is This Answer Correct ?    15 Yes 1 No

can we store values and addresses in the same array? explain..

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

can we store values and addresses in the same array? explain..

Answer / palani222samy

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

Post New Answer

More C Interview Questions

What is n in c?

0 Answers  


#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }

1 Answers  


How can you determine the maximum value that a numeric variable can hold?

0 Answers  


how to swap 2 numbers within a single statement?

4 Answers  


List the difference between a 'copy constructor' and a 'assignment operator' in C?

0 Answers   Accenture,






f1() { f(3);} f(int t) { switch(t); { case 2: c=3; case 3: c=4; case 4: c=5; case 5: c=6; default: c=0;} value of c?

5 Answers   Geometric Software,


Why doesnt this code work?

0 Answers  


Are global variables static in c?

0 Answers  


What is dynamic dispatch in c++?

0 Answers  


with out using main how to execute the program?

2 Answers  


What are the different types of constants?

0 Answers  


How can I determine whether a machines byte order is big-endian or little-endian?

0 Answers  


Categories