C Programming
Find the output of the following program.void main(){ int array[10]; int *i = &array[2], *j = &array[5]; int diff = j-i; printf("%d", diff);}

3
Garbage value
Error
6

ANSWER DOWNLOAD EXAMIANS APP