what is the structure?

Answers were Sorted based on User's Feedback



what is the structure?..

Answer / guest

structure is the diff collection of datatypes

Is This Answer Correct ?    14 Yes 0 No

what is the structure?..

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

what is the structure?..

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

what is the structure?..

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

Post New Answer

More C Interview Questions

Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)

0 Answers  


What is the use of function in c?

0 Answers  


f1() { f(3);} f(int t) { switch(t); { case 2: c=3; case 3: c=4; case 4: c=5; case 5: c=6; default: c=0;} value of c?

5 Answers   Geometric Software,


what is the difference between. system call and library function?

2 Answers   CDAC, Satyam,


biggest of two no's with out using if condition statement

8 Answers  






What is the use of sizeof?

0 Answers  


Suppose I want to write a function that takes a generic pointer as an argument and I want to simulate passing it by reference. Can I give the formal parameter type void **, and do something like this? void f(void **); double *dp; f((void **)&dp);

1 Answers  


What are the characteristics of arrays in c?

0 Answers  


What is data types?

0 Answers  


There are 3 baskets of fruits with worng lables,one basket has apple,another basket has orange,another has combination of apple and orange,what is the least way of interchange the lables.

15 Answers   Cisco, Google, MBT,


can v write main() { main(); } Is it true?

6 Answers  


What is the scope of global variable in c?

0 Answers  


Categories