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
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
What is a const pointer in c?
What are local variables c?
Can the curly brackets { } be used to enclose a single line of code?
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
What is the right type to use for boolean values in c?
How can I get the current date or time of day in a c program?
Is c procedural or object oriented?
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
Why is c so important?
Why can arithmetic operations not be performed on void pointers?
How can I dynamically allocate arrays?
Can we access array using pointer in c language?
Explain what math functions are available for integers? For floating point?
What are all different types of pointers in c?