blob: 608ac9fec52ad6a433e6dd668ded6ce08f1478ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <stdio.h>
int array[10] = {4, 5, 8, 9, 8, 1, 0, 1, 9, 3};
int index;
main()
{
index = 0;
while (array[index] != 0)
index++;
(void) printf("Number of elements before zero %d\n",
index);
return (0);
}
|