struct ptr
{
int a;
char b;
int *p;
}abc;
what is d sizeof structure without using "sizeof" operator??

Answer Posted / vishnu948923

void main()
{
int x,y;
y=&abc.a;
x=(&abc->p+1);
printf("%d",x-y);
}

Is This Answer Correct ?    8 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is an lvalue?

642


What is a floating point in c?

614


What is a program flowchart?

614


what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values

1268


What is the g value paradox?

656






In a byte, what is the maximum decimal number that you can accommodate?

636


why wipro wase

1842


What is I ++ in c programming?

635


Differentiate between the = symbol and == symbol?

728


Explain the difference between #include "..." And #include <...> In c?

638


In c language can we compile a program without main() function?

590


What are extern variables in c?

557


What is actual argument?

601


What is extern variable in c with example?

551


Write a program to find the biggest number of three numbers in c?

597