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 is wrong in this statement? scanf(ā%dā,whatnumber);
Why array is used in c?
What is the use of header files?
What is an arrays?
Is printf a keyword?
Why do we use return in c?
When should you not use a type cast?
Describe the header file and its usage in c programming?
What is difference between constant pointer and constant variable?
If errno contains a nonzero number, is there an error?
how to make a scientific calculater ?
Where are c variables stored in memory?
How can you access memory located at a certain address?
How to implement a packet in C
How many identifiers are there in c?