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 are the two types of structure?
What is the scope of local variable in c?
Explain how can I convert a number to a string?
Explain what is the difference between functions abs() and fabs()?
What is the use of pragma in embedded c?
Can you add pointers together? Why would you?
In C programming, how do you insert quote characters (‘ and “) into the output screen?
using only #include
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
Can you subtract pointers from each other? Why would you?
Tell me is null always defined as 0(zero)?
What is console in c language?
What is meant by initialization and how we initialize a variable?
Can a pointer be null?
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if