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);}

Error
6
Garbage value
3

ANSWER DOWNLOAD EXAMIANS APP

C Programming
A preprocessor command

need not start on the first column
comes before the first executable statement
need not start on a new line
has # as the first character

ANSWER DOWNLOAD EXAMIANS APP