What is structure packing ?

Answers were Sorted based on User's Feedback



What is structure packing ?..

Answer / khaja

packing structures in a place or memory

Is This Answer Correct ?    2 Yes 0 No

What is structure packing ?..

Answer / vijay zanvar

See: http://www.geocities.com/vijoeyz/faq/c/padding.txt

Best,
Vijay Zanvar,
Home Page - http://geocities.com/vijoeyz/


Is This Answer Correct ?    2 Yes 5 No

Post New Answer

More C Interview Questions

In C programming, how do you insert quote characters (‘ and “) into the output screen?

0 Answers  


what is pointer ? what is the use of pointer?

6 Answers   Infosys,


#include<stdio.h> #include<conio.h> void main() {clrscr(); char another='y'; int num; for(;another=='y';) { printf("Enter a number"); scanf("%d",&num); printf("squre of %d is %d",num,num*num); printf("\nwant to enter another number y/n"); scanf("%c",&another); } getch(); } the above code runs only one time.on entering 'y' the screen disappeares.what can i do?

3 Answers  


which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;

0 Answers  


count the numbers between 100 and 300, that star with 2 and ends with 2

5 Answers   Mind Tree,






what will be the output of this program main() { int i=1; while (i<=10); { i++; } }

11 Answers  


Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer

0 Answers   TCS,


What does the format %10.2 mean when included in a printf statement?

0 Answers  


Is stack a keyword in c?

0 Answers  


int j =15,i; for (i=1; 1<5; ++i) {printf ("%d%d ",j,i); j = j-3; }

2 Answers  


Why doesnt long int work?

0 Answers  


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

1 Answers  


Categories