static char *input=NULL;
why input variable is initialized with null?
Designing string tokenizer
The input variable is nothing but a pointer to a char, which if not pointed to NULL initially will point at some garbage random value.
static char *input=NULL;
why input variable is initialized with null?
The input variable is nothing but a pointer to a char, which if not pointed to NULL initially will point at some garbage random value.