# Why you can use static keyword without initializing it to zero

### Static variables

In C, static char variables are initialized to '\\0', which is the null character. This is different from a null pointer, which is represented by the value NULL. static int are initialized to 0 and static char pointers are initialized to NULL
