Hi.. can anyone tell wat error/warning I will get on compiling this code:
Fun1()
{
Static int i=5;
i=i+1; //suspicious line is this
print(i)
}
Fun1()
{
Static int i=5;
i=i+1; //suspicious line is this
print(i)
}
void func(void) {
static int isInitialized = 0;
if (! isInitialized) {
funcInit();
isInitialized = 1;
}
<do something useful>
}
Comment