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

the data type used for unlimited value in c and how to do this program

1 Answers  


how can we Declare a variable in c without defining it.

1 Answers   TCS,


please help me.. how to write a code of this output?? "Enter range number:"10 1 is an odd number 2 is an even numbers 3 in an odd numbers 4 " to 10" "printing all odd numbers:" 1,3,5,7,9 "printing all even numbers:" 2,4,6,8,10 "sum of all odd numbers:25 "sum of all even numbers:30 using a C Programming ARRAY pleas pleas help.. its my project ..please :(

1 Answers  


Write a simple program to find the size of different basic data types in C.

3 Answers  


how can i get the string which is having two spaces at the end.suppose the string is "Hello World ".Now at the end i have two spaces.i need to print with that spaces .

1 Answers  






What are c header files?

0 Answers  


Why is c called c not d or e?

0 Answers  


write an algorithm which can find the largest number among the given list using binary search ............... this was asked in the interview

2 Answers   Satyam, UNIS, Wipro,


how does the C compiler interpret the following two statements p=p+x; q=q+y; a. p=p+x; q=q+y b. p=p+xq=q+y c. p=p+xq; q=q+y d. p=p+x/q=q+y

2 Answers   TCS, Tech Synergy,


a number is perfect if it is equal to the sum of its proper divisor.. 6 is perfect number coz its proper divisors are 1,2 and three.. and 1+2+3=6... a number is deficient if the sum of its proper divisor is less than the number.. sample: 8 is deficient, coz its proper divisors are 1,2 and 4, and 1+2+4=7. abundant number, if the sum of its proper divisor is greater than the number.. sample..12 is abundant coz 1+2+3+4+6=16 which is geater than 12. now write a program that prompts the user for a number, then determines whether the number is perfect,deficient and abundant..

1 Answers  


code for copying two strings with out strcpy() function.

6 Answers  


WHAT IS THE DIFFERENCE BETWEEN malloc() and calloc() in c file management?

28 Answers   3D PLM, Code Studio, Deltech, IBM,


Categories