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 gets() function?
FILE PROGRAMMING
what will be the output for the following main() { printf("hi" "hello"); }
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
int i=10; printf("%d %d %d", i, i=20, i);
What is sizeof return in c?
Is it possible to use curly brackets ({}) to enclose single line code in c program?
#include
diff between exptected result and requirement?
What is the right type to use for boolean values in c? Is there a standard type?
What are c preprocessors?
What is wrong with this declaration?
What is the difference between far and near ?
What is the value of c?
What does d mean?