What is an incomplete type?
Answer / atul shankhwar
Incomplete types refers to pointers in which there is non availability of the implementation of the referenced location or it points to some location whose value is not available for modification.
Example:
int *i=0x400 // i points to address 400
*i=0; //set the value of memory location pointed by i.
Incomplete types are otherwise called uninitialized pointers.
| Is This Answer Correct ? | 0 Yes | 0 No |
Are vectors faster than arrays?
Which is not an ANSII C++ function a) sin() b) tmpnam() c) kbhit()
Explain the term memory alignment?
How does a copy constructor differs from an overloaded assignment operator?
What is object oriented programming (oop)?
How much do coding jobs pay?
If there are 1 to 100 Numbers in array of 101 elements. Which is the easy way to find repeated number?
How to access a variable of the structure?
I want to write a C++ language program that: 1. Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. The program should work for squares of all side sizes between 1 and 20.
What is difference between c++ and c ++ 14?
Describe Trees using C++ with an example.
What are the two types of comments, and how do they differ?