what is structuer?
Answers were Sorted based on User's Feedback
Answer / ashish
A structure is a collection of variables under a single name.
These variables can be of different types, and each has a name
which is used to select it from the structure. A structure is
a convenient way of grouping several pieces of related
information together.
A structure can be defined as a new named type, thus extending
the number of available types. It can use other structures,
arrays or pointers as some of its members, though this can get
complicated unless you are careful.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / mayur dharmik
1. Structure is USER DATA TYPE,
2. It is the collection of Similar OR Dissimilar data type
of element to create new data type.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / dharmaraj
A STRUCTURE IS "ALL THE DATAS TO SAVING IN ONE UNIT "AND
CALLED IN SINGLE NAME.
the structur is used in use "struct" keyword.
[e.g]
struct struct_name()
{
-----
-----
}
| Is This Answer Correct ? | 0 Yes | 1 No |
In a byte, what is the maximum decimal number that you can accommodate?
what is the output of printf("%d",(scanf("%d",10));
1)which of following operator can't be overloaded. a)== b)++ c)?! d)<=
Can we change the value of #define in c?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
hi send me sample aptitude papers of cts?
Is null equal to 0 in sql?
write a program to print the all 4digits numbers & whose squares must me even numbers?
How can you access memory located at a certain address?
why arithmetic operation can’t be performed on a void pointer?
c language interview questions & answer
Explain #pragma in C.