![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| High Level Programming Post questions about C, C++, Java, SQL, and other programming languages here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Type I and Type II Errors - The Heart of Event Processing | iBot | Complex Event Processing RSS News | 0 | 12-05-2007 03:50 PM |
| error: field has incomplete type | boyanov | High Level Programming | 4 | 08-10-2007 01:15 AM |
| String type to date type | rinku | Shell Programming and Scripting | 1 | 05-30-2007 03:56 AM |
| Accesing structure member:Error:dereferencing pointer to incomplete type | amit4g | High Level Programming | 3 | 05-07-2007 05:32 AM |
| Human readable type vs MIME type detection using file | spauldingsmails | Shell Programming and Scripting | 0 | 03-21-2007 09:43 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
array type has incomplete element type
Dear colleagues,
One of my friend have a problem with c code. While compiling a c program it displays a message like "array type has incomplete element type". Any body can provide a solution for it. Jaganadh.G |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
If I have the following code
Code:
struct foo;
struct bar
{
struct foo a_foo;
};
You need to identify the type that is preventing the compilation and ensure it is defined before it's use. |
|||
| Google The UNIX and Linux Forums |