struct ptr
{
int a;
char b;
int *p;
}abc;
what is d sizeof structure without using "sizeof" operator??
Answer Posted / ryan
The size of the structure is 5 bytes
| Is This Answer Correct ? | 5 Yes | 4 No |
Post New Answer View All Answers
What is null pointer constant?
How to draw the flowchart for structure programs?
Array is an lvalue or not?
Explain which function in c can be used to append a string to another string?
What is the difference between ‘g’ and “g” in C?
What is malloc and calloc?
int far *near * p; means
Explain what is the most efficient way to store flag values?
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
Calculate 1*2*3*____*n using recursive function??
What is the best way to comment out a section of code that contains comments?
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
What is the difference between single charater constant and string constant?
while initialization of array why we use a[][2] why not a[2][]...?
What are the features of c language?