|
|
|
|
- Reason
- Correction
- Example
- Incomplete structure declaration
Error 38: The END statement marking the end of the structure declaration is missing
You are declaring a structure. The END keyword marking the end of the structure declaration is missing. Indicate the end of the structure declaration by using the END keyword. Incomplete structure declaration Code triggering the error
MyClass is Structure Student is string Level is int Year is Date
Possible correction Specify the end of the structure with the END keyword.
MyClass is Structure Student is string Level is int Year is Date END
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|