struct ptr
{
int a;
char b;
int *p;
}abc;
what is d sizeof structure without using "sizeof" operator??
Answer Posted / manoj mishra
11
| Is This Answer Correct ? | 5 Yes | 20 No |
Post New Answer View All Answers
What is meant by inheritance?
Explain what is the stack?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
how we can make 3d venturing graphics on outer interface
Write a program to show the change in position of a cursor using c
What is the meaning of 2d in c?
What is page thrashing?
Can you mix old-style and new-style function syntax?
What is the difference between #include and #include 'file' ?
Why C language is a procedural language?
How can I change their mode to binary?
What is "Hungarian Notation"?
What is int main () in c?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.