hi ,
i have read that c99 introduced:
inline,_Bool,restrict,_Complex,_Imaginary
i have used _Bool here but do no how to use remaining all
please any one used the above can help me.
int main()
{
_Bool b;
b=true;// giving error true undeclared ,cant i use that way
// with out using enums.
b =1;
if ( b )
printf (" ok\n");
else
printf("No\n");
return 0;
}
Thanks,
Danian.