1//there is no "empty" in C. There is always a fixed number of elements with some value.
2//However, you can implement it yourself by initializing each element to NULL
3char* results[10] = { NULL };
4/* some code */
5if(results[i] == null) /* this is an empty element */