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 |
Can we specify variable field width in a scanf() format string? If possible how?
difference between the c++ and c languages
By using c++ with an example describe linked list?
How many types of comments are there in c++?
What is c++ vb?
Why can’t you call invariants() as the first line of your constructor?
what is an array
Define what is constructor?
Is python written in c or c++?
Const char *p , char const *p What is the difference between the above two?
what kind of projects are suitable for c and c++
Can union be self referenced?