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

Why is c called a mid-level programming language?

0 Answers  


what is the difference between #include<> and #include”…”?

5 Answers  


What is volatile variable in c?

0 Answers  


write a c program to calculate the income tax of the employees in an organization where the conditions are given as. (I.T. = 0 if income <100000 I.T = 10% if income _< 200000 it = 20% if income >_ 200000)

7 Answers   Consultancy, DBU, FD, JK Associates, Kobe, Satyam,


what is function pointer?

2 Answers   Wipro,






what is the output? #define fun(a,b,t) (g ##t=(a),(a)=(b),(b)=g##t) float gfloat; main() { float a=1.12,b=3.14; fun (a,b,float); printf("na=%4.2f,b=%4.2f",a,b); } A)Error in Defining Macro B)a=1.12,b=3.14 C)a=3.14,b=1.12 D)None of the Above

3 Answers   Accenture, Infosys, Wipro,


why programming language C is still used in operating system's kernel??

1 Answers   Wipro,


Write a program that his output * *** *****

1 Answers  


what is foreign key in c language?

1 Answers   ADP,


program to convert a integer to string in c language'

0 Answers  


what is Structural oriented language? give some example of this language.....?

1 Answers  


Explain what is wrong with this program statement? Void = 10;

0 Answers  


Categories