array element null c

Solutions on MaxInterview for array element null c by the best coders in the world

showing results for - "array element null c"
Indie
04 Jun 2016
1#define MAX 100
2int fib_arr[MAX];
3
4void init()
5{
6    for (int i = 0; i < MAX; i++)
7    {
8        fib_arr[i] = NULL;
9    }
10}
11
12int main(){
13	init();
14  	return 0;
15}