Naumanpak
Member level 2
Experts, Its me again..
Using mikroc c compiler and cannot declare structure objects.
struct information
{
int speedlimit;
char name[30];
};
struct decoded
{
float latitude;
char latitude_dir;
float longitude;
char longitude_dir;
int speed;
float angle;
information info;
long time;
};
get an error on the bold line. Same is the case in main(), I get errors on declaring one. Any suggestions??
thanks.
Using mikroc c compiler and cannot declare structure objects.
struct information
{
int speedlimit;
char name[30];
};
struct decoded
{
float latitude;
char latitude_dir;
float longitude;
char longitude_dir;
int speed;
float angle;
information info;
long time;
};
get an error on the bold line. Same is the case in main(), I get errors on declaring one. Any suggestions??
thanks.