1. The keyword used to define a structure is





Ask Your Doubts Here

Type in
(Press Ctrl+g to toggle between English and the chosen language)

Comments

Show Similar Question And Answers
QA->‘Paramountcy is paramount’ was declared to define the relations of Indian States with British Government by which Commission?....
QA->Define Isobars?....
QA->Define Isotones?....
QA->Define ab=2a+2b-ab, a and b are any two numbers, if 3x = 4 then x is :....
QA->Rays used to study the internal atomic structure of crystal?....
MCQ->Which of the following statements are correct about the structure declaration given below? struct Book { private String name; protected int totalpages; public Single price; public void Showdata() { Console.WriteLine(name + " " + totalpages + " " + price); } Book() { name = " "; totalpages = 0; price = 0.0f; } } Book b = new Book(); We cannot declare the access modifier of totalpages as protected. We cannot declare the access modifier of name as private. We cannot define a zero-argument constructor inside a structure. We cannot declare the access modifier of price as public. We can define a Showdata() method inside a structure.....
MCQ->Consider the following features of 'structures' in C? The values of a structure variable can be assigned to another structure variable of the same type using the assignment operator.One structure can be nested within another structure.A variable structure can also be passed to a function. Which of the above are correct?....
MCQ->The keyword used to define a structure is _____....
MCQ->The keyword used to define a structure is....
MCQ->What will be the output of the program? #include #define str(x) #x #define Xstr(x) str(x) #define oper multiply int main() { char opername = Xstr(oper); printf("%s\n", opername); return 0; }....
Terms And Service:We do not guarantee the accuracy of available data ..We Provide Information On Public Data.. Please consult an expert before using this data for commercial or personal use | Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions
Question ANSWER With Solution