adplus-dvertising
frame-decoration

Question

What is the size of a C structure?

a.

C structure is always 128 bytes.

b.

Size of C structure is the total bytes of all elements of structure.

c.

Size of C structure is the size of largest element.

d.

None of the above

Answer: (b).Size of C structure is the total bytes of all elements of structure.

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the size of a C structure?

Similar Questions

Discover Related MCQs

Q. What is a structure in C language?

Q. For the following function call which option is not possible?

func(&s.a;); //where s is a variable of type struct and a is the member of the struct.

Q. Which properly declares a variable of struct foo?

Q. Which of the following is a properly defined struct?

Q. Which of the following accesses a variable in structure b?

Q. Which of the following share a similarity in syntax?

1. Union
2. Structure
3. Arrays
4. Pointers

Q. Size of union is size of the longest element in the union.

Q. It is not possible to create an array of pointer to structures.

Q. Members of a union are accessed as________________.

Q. Union differs from structure in the following way

Q. Which of the following comments about the usage of structure is true?

Q. Which of the following comments about union are true?

Q. If initialization is a part of a structure, then storage class can be

Q. Most appropriate sentence to describe unions is

Q. The declaration

union id{
char color[12];
int size;}shirt,Jeans;

denotes shirt and Jeans are variable of type id and

Q. The expression a<<6 shifts all bits of a six places to the left. If a 0x6db7, then what is the value of a<<6?

Q. Which of the following statements correct about the below code?
maruti.engine.bolts=25;

Q. What is the similarity between a structure, union and enumeration?

Q. How will you free the allocated memory ?

Q. Which of the following declarations are correct ?

1 : typedef long a;
extern int a c;
2 : typedef long a;
extern a int c;
3 : typedef long a;
extern a c;