IS STRUCTURES CAN BE USED WITHIN AN ARRAY?

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the 4 types of unions?

603


What are the advantages and disadvantages of a heap?

702


What does the message "automatic aggregate intialization is an ansi feature" mean?

689


What is an arrays?

650


Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant

667






Is array name a pointer?

601


7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.

2215


What is array of pointers to string?

564


a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode

648


Can we declare a function inside a function in c?

582


What is a lvalue

657


What is typedef struct in c?

582


Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)

805


What is memcpy() function?

620


What is meant by inheritance?

630