I'm starting to learn C coming from a background in Java & Javascript and I'm wondering if there is a technical reason for the following being considered bad practice or if it's just the way the language evolved?
#define bool char
#define false 0
#define true 1
#define null NULL
Everywhere I look I always see defined variables (if that's the correct word) uppercased and I'm wondering if there is a good technical reason for this convention? I'm sure this must have been asked many times but I can't seem to find an answer.