Computer Science, asked by satendrasingh79055, 3 months ago

Initializing the variable means setting the variables value to zero.​

Answers

Answered by adityakumar645
1

Answer:

Implicit initialization of variables with 0 or 1 in C

Explanation:

#include <stdio.h>

#include <stdlib.h>

// implicit initialization of variables

a, b, arr[3];

// value of i is initialized to 1

int main(i)

{

printf("a = %d, b = %d\n\n", a, b);

printf("arr[0] = %d, \narr[1] = %d, \narr[2] = %d,"

"\n\n", arr[0], arr[1], arr[2]);

printf("i = %d\n", i);

return 0;

}

Similar questions