what is the structure?
Answers were Sorted based on User's Feedback
Answer / som87
A Structure in C is a collection of different data types.
While in C++ a structure consist of Data types and functions.
| Is This Answer Correct ? | 10 Yes | 3 No |
Answer / suriya
Structures are the C equivalent of records. A structure type
is defined by
struct struct-name
{
type field-name;
type field-name; ...
}
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / a\sivasankar.a
structure is an derived data type and it is a collection of
different data types stored in s single stucture
| Is This Answer Correct ? | 1 Yes | 0 No |
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
Input any no. and print all the the numbers that comes before it like this for e.g input = 4 0 01 012 0123 01234 plz answer it 2day
Why c is a procedural language?
How will you allocate memory to double a pointer?
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
What is function pointer c?
How do I get an accurate error status return from system on ms-dos?
What are the uses of pre-processor directives?
What is the purpose of the fflush() function in C?
Is c functional or procedural?
What is array in C
Explain how can I read and write comma-delimited text?