What is structure packing ?
Answers were Sorted based on User's Feedback
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 |
sqrt(x+sqrt(x+sqrt(x+sqrt(x))))=2; Find the value of x?
What are the types of type specifiers?
program to print upper & lower triangle of a matrix
How main function is called in c?
write a program to reverse the words in the sentence.NOTE:not reverse the entire string but just the occurance of each word
What is operator promotion?
what are the general concepts of c and c++
What does sizeof int return?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What does the c in ctime mean?
find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }
Is main is a keyword in c?