Client. C: 996: Error: A label can only be part of a statement and a declaration is not a statement
Switch (){
Case 1:
....................
....................
....................
Break;
Case 2:
Break;
}
The following error occurs during GCC Compilation:
Error: A label can only be part of a statement and a declaration is not a statement
But with the following Brackets added, there is no error. Why? Compiler problems?
Switch (){
Case 1:
{
....................
....................
....................
}
Break;
Case 2:
Break;
}
Http://zhidao.baidu.com/link? Url = fSrpX7VaVXd5-L8c2zj2xVDSbh8bM-5xyO6iyZOYgV30mI_iZlASQmNakmGSC-4gnPO3oG2HzIAvdSVayOTjTa
Http://www.cnblogs.com/radiolover/p/4307453.html Mobile Phone Positioning
Http://www.cnblogs.com/skyme/p/4310550.html Data Mining
C compilation exception switch a label can only be part of a statement and a declaration is not a statement