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
How can I read data from data files with particular formats?
What is the code in while loop that returns the output of given code?
What are different types of operators?
What is the sizeof () operator?
What are register variables in c?
Should a function contain a return statement if it does not return a value?
Is c easy to learn?
How can I find out the size of a file, prior to reading it in?
Write a Program to find whether the given number or string is palindrome.
What do the functions atoi(), itoa() and gcvt() do?
What is a structural principle?
How to write a code for reverse of string without using string functions?
Why we write conio h in c?
Explain the difference between null pointer and void pointer.
Explain what does the format %10.2 mean when included in a printf statement?