Structures
What do you mean by Structures? Explain in brief?
Expert
Structure refers to the heterogeneous collection of the elements which are referenced by the same name. A structure is declared by using the “struct” keyword.
Following is an example that creates a structure to store the employee's information:
struct emp { fixed int empID[15]; fixed char name[30]; fixed char addr[50]; fixed char dept[15]; fixed char desig[15]; }
The above instance defines a structure emp and members of this structure specifies the information about the employee.
How we can choose the color from a ColorDialog box?
Why XMLHttpRequest object is used in the AJAX?
What is the root namespace for fundamental types in .NET Framework?
Explain the types of Inheritance.
Illustrate the terms User Control as well as Custom Control?
How we can dynamically add the user controls to the page?
What do you understand by the Tuples?
How the state of the requested process can be obtained?
Explain the syntax of the “for” loop.
How users of an application can be prevented from editing the text in the ComboBox controls in .NET 4.0?
18,76,764
1944031 Asked
3,689
Active Tutors
1460576
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!