what is structuer?

Answers were Sorted based on User's Feedback



what is structuer?..

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

what is structuer?..

Answer / supercool

For dealing with different types of data(e.g. int, float, char,etc.)at a time, C provides a data type called ‘structure’. A structure gathers together, different atoms of information that comprise a given entity.

Is This Answer Correct ?    0 Yes 0 No

what is structuer?..

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

what is structuer?..

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

Post New Answer

More C Interview Questions

main() { int x, arr[8]={11,22,33,44,55,66,77,88}; x=(arr+2)[3]; printf(“%d”,x); }

8 Answers   Vector,


What is a header file?

0 Answers  


What is string length in c?

0 Answers  


How do you define CONSTANT in C?

0 Answers   ADP,


What does == mean in texting?

0 Answers  


sqrt(x+sqrt(x+sqrt(x+sqrt(x))))=2; Find the value of x?

4 Answers   Subex,


List some applications of c programming language?

0 Answers  


Differentiate between calloc and malloc.

0 Answers   Wipro,


write a program whose output will be- 1 12 123 1234

10 Answers  


Is it cc or c in a letter?

0 Answers  


main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }

3 Answers   CSC,


What is the acronym for ansi?

0 Answers  


Categories