0
How do I test for an empty spot in my arrays
I have an array of 100 and I need any easy way to find the 1st open spot and add something to it but I can't quite seem to figure it out
3 Respostas
+ 2
while (arr[i]!='\0') {i++;}
your code goes here
+ 1
Thanks