struct myStruct {
float start;
float newStart;
newStart = start;
}
Why am I getting this error for newStart?
this declaration has no storage class or type
specifier
1
struct myStruct {
float start;
float newStart;
newStart = start;
}
Why am I getting this error for newStart?
this declaration has no storage class or type
specifier
1