#define fst 1
int main()
{
#if( fst ==1 )
printf("FST\n");
#else
printf("Dummy FST\n");
return 0;
}
if i replace the statement in line 4 with #if fst
also the code is working.
can any one tell me what is the correct way , advantages and disadvantages.