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
Explain that why C is procedural?
What is a void pointer in c?
Why use int main instead of void main?
How can I manipulate individual bits?
what is uses of .net
Ow can I insert or delete a line (or record) in the middle of a file?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
What are types of structure?
What is return in c programming?
Is the exit() function same as the return statement? Explain.
Is c++ based on c?
What are types of preprocessor in c?
What is function prototype?
Write a code of a general series where the next element is the sum of last k terms.
What are register variables in c?