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

Garbage value
3
6
Error

ANSWER DOWNLOAD EXAMIANS APP

C Programming
A preprocessor command

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

ANSWER DOWNLOAD EXAMIANS APP