What is an opaque pointer?
Answer / ritesh pal
A pointer is said to be opaque if the definition of the type to which it points to is not included in the current translation unit. A translation unit is the result of merging an implementation file with all its headers and header files.
| Is This Answer Correct ? | 0 Yes | 0 No |
What are different types of polymorphism supported by C++
What is the difference between equal to (==) and assignment operator (=)?
How can you quickly find the number of elements stored in a dynamic array? Why is it difficult to store linked list in an array?
Explain the differences between list x; & list x();.
What do c++ programmers do?
Is c++ a programming language?
Do inline functions improve performance?
write a corrected statement in c++ so that the statement will work properly. x = y = z + 3a;
Copy Linked List using recursive function?
differance between copy & clon
if int1 has the value 12, int has the value 18, and int3 has the value 21, what is the result: int1 < int2 && int2 < int 3
What is scope in c++ with example?