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 |
Why is c++ called oops?
why v use c++ even we have microprocessor
Is there any difference between int [] a and int a [] in c++?
What is null c++?
What does #define mean in c++?
How do you clear a set in c++?
If you push the numbers (in order) 1, 3, and 5 onto a stack, which pops out first a) 1 b) 5 c) 3
Mention the ways in which parameterized can be invoked. Give an example of each.
Can create new c++ operators?
char *ch = "abcde"; char c[4]; how to copy 'ch' to 'c'?
What is auto used for in c++?
What is the difference between map and hashmap in c++?