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

Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me

0 Answers  


int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?

15 Answers   Mascot,


struct abc { unsigned int a; char b; float r; }; struct xyz { int u; struct abc tt; }ww; ww = (struct xyz*)malloc(sizeof(struct xyz)); will the memory be allocated for the inner structure also?

1 Answers   Wipro,


show how link list can be used to repersent the following polynomial i) 5x+2

0 Answers   CBSE,


what is differnence b/w macro & functions

1 Answers  


write a addition of two no. program with out using printf,scanf,puts .

4 Answers  


write a function for strtok()??

2 Answers   Verifone,


Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }

1 Answers  


How arrays can be passed to a user defined function

0 Answers  


What is meant by int fun const(int a, int b) { .... ... }

1 Answers  


Write a program to remove the C comments(/* */) and C++ comments(//) from a file. The file should be declared in command line.

4 Answers   Persistent, Subex,


How is a two dimensional array passed to function when the order of matrix is not known at complie time?

1 Answers   CSC,


Categories