struct ptr
{
int a;
char b;
int *p;
}abc;
what is d sizeof structure without using "sizeof" operator??
Answer Posted / vignesh1988i
THE SIZE OF THE STRUCTURE WILL BE '5'
| Is This Answer Correct ? | 4 Yes | 7 No |
Post New Answer View All Answers
What is the translation phases used in c language?
What is the right way to use errno?
What are keywords in c with examples?
What is the difference between Printf(..) and sprint(...) ?
Why is c not oop?
Write a code of a general series where the next element is the sum of last k terms.
explain how do you use macro?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
What is the use of structure padding in c?
code for replace tabs with equivalent number of blanks
Where register variables are stored in c?
What is a string?
What does sizeof function do?
Explain what does the function toupper() do?
What is a nested loop?