How can I implement opaque (abstract) data types in C?
What's the difference between these two declarations?
struct x1 { ... };
typedef struct { ... } x2;
Answer Posted / phani kumar s
using the structures and the pointers
n structures the memory will be allocated for each object at
different locations struct x1 { ... };
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What does void main return?
What are the types of unary operators?
What are near, far and huge pointers?
Describe static function with its usage?
What does %c mean in c?
What is a void pointer? When is a void pointer used?
Explain what is operator promotion?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
What is the explanation for the dangling pointer in c?
Lists the benefits of c programming language?
Do you know what are bitwise shift operators in c programming?
What is a macro in c preprocessor?
What is %d used for?
Why c is called procedure oriented language?
What are the primitive data types in c?