main()
{
struct test
{
char c;
int i;
char m;
} t1;
printf("%d %d\n", sizeof(t1), sizeof(t1.c));
}
Answer Posted / rashmi
12 1
| Is This Answer Correct ? | 7 Yes | 10 No |
Post New Answer View All Answers
What are header files why are they important?
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
Explain what are the different file extensions involved when programming in c?
Is there any demerits of using pointer?
How do you determine a file’s attributes?
Define and explain about ! Operator?
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
What is the difference between struct and union in C?
What are the types of functions in c?
What is structure and union in c?
Explain what does the format %10.2 mean when included in a printf statement?
What does %d do?
What is typedf?
Dont ansi function prototypes render lint obsolete?
How can I insert or delete a line (or record) in the middle of a file?