IS STRUCTURES CAN BE USED WITHIN AN ARRAY?
Answers were Sorted based on User's Feedback
Answer / venugopal
YES ,THEY CAN BE,BECAUSE ARRAY CAN HOLD SIMILAR DATA
TYPED ONES,WE ARE USING ONLY STRUCTURE VARIABLES
THEMSELVES.IT WILL BE POSSIBLE.
Is This Answer Correct ? | 5 Yes | 0 No |
Answer / e-mail
yes. structures can be used within an array. variables are
declared in an arrays in structures.
Is This Answer Correct ? | 2 Yes | 1 No |
Answer / biranchi parida
generally in turbo c++ 3.0 to above version it can't
possible but possible if we declared float linking point
declaration
in such way globally after header file
float a,*b;
b=&a;
after this declaration structure can take array
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / swamy s t
No. Because arrays are homogeneous datatype and
structures are heterogeneous datatype. So we cann't
Is This Answer Correct ? | 0 Yes | 1 No |
What are the ways to a null pointer can use in c programming language?
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
diff between exptected result and requirement?
what are the different storage classes in c?
what is bit rate & baud rate? plz give wave forms
What are bit fields? What is their use?
What are the benefits of c language?
What functions are used in dynamic memory allocation in c?
What are the advantages of using new operator as compared to the function malloc ()?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
What does %2f mean in c?
Describe for loop and write a c program to sum the series X + x2/2! + x3 /3! + …….. up to fifteen terms.