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 a ternary operator in c?
Define Spanning-Tree Protocol (STP)
What is a union?
Is int a keyword in c?
Explain what is the general form of a c program?
What are local static variables?
int i=10; printf("%d %d %d", i, i=20, i);
find the sum of two matrices and WAP for it.
What is scope and lifetime of a variable in c?
I need previous papers of CSC.......plz help out by posting them.......
What are the salient features of c languages?
What are different types of operators?
What does node * mean?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
What is time complexity c?