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

Answer Posted / sri

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

Is This Answer Correct ?    15 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Tell me what is the purpose of 'register' keyword in c language?

609


How does #define work?

638


What is the best way to comment out a section of code that contains comments?

772


Explain what does it mean when a pointer is used in an if statement?

611


How can I split up a string into whitespace-separated fields?

562






What is mean by data types in c?

545


What is sizeof array in c?

588


#include #include struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

5177


What are different types of variables in c?

563


What is the use of static variable in c?

587


What does static variable mean in c?

641


How can I recover the file name given an open stream?

547


What is array in C

697


What is the purpose of void pointer?

590


What is the right type to use for boolean values in c?

576