void hexad(int i)
{
int j=0;
int x=0;
int chii=0;
while(x<8)
{
second2[x]=' ';
second1[x]=' ';
x++;
}
switch(codesum)
{
case 744 :
while(i<12 && temp[i]!='\0')
{
second2[j]=temp[i];
i++;
j++;
}
strcpy(second1,"CE ");
break;
case 410 : while(i<12 && temp[i]!='\0')
{
second2[j]=temp[i];
i++;
j++;
}
chii=second2[0];
switch(chii)
{
'A' : strcpy(second1,"8F "); // Gives error here
strcpy(second2," ");
break;
'B' : strcpy(second1,"88 "); // Gives error here too!!
strcpy(second2," ");
break;
'C' : strcpy(second1,"89 "); // Gives error here too!!
strcpy(second2," ");
break;
'D' : strcpy(second1,"8A "); // Gives error here too!!
strcpy(second2," ");
break;
'E' : strcpy(second1,"8B "); // Gives error here too!!
strcpy(second2," ");
break;
'H' : strcpy(second1,"8C "); // Gives error here too!!
strcpy(second2," ");
break;
'L' : strcpy(second1,"8D "); // Gives error here too!!
strcpy(second2," ");
break;
default: strcpy(second1,"8E ");
}
break;
Guyz and galz
I've this wierd problem whenever i compile ma .c file using devcpp , it gives me the following error at the lines I've marked above:
"D:\Compilers\Untitled10.cpp expected `;' before ':' token"
Plz. help. I cannot understand what's wrong with this code. Tried in visual c++, same error there too!!