define

Hi ,
Can any one tell me why is
#define STRICT 1
used .
Thanks in advance
If youre wondering what it does, when you compile your code, the compiler replaces STRICT with 1 everywhere in your code

So if youd have printf("%d + %d = %d", STRICT, 2, STRICT+2);
It would become printf("%d + %d = %d", 1, 2, 1+2);, printing 1 + 2 = 3

If you want to know the reason STRICT is 1, ask the maker of the code you found that line in
Last edited on
Thanks you, i got it
Topic archived. No new replies allowed.