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
6
Garbage value
Error

ANSWER DOWNLOAD EXAMIANS APP

C Programming
C preprocessor

Takes care of conditional compilation
Takes care of macros
All of these
Acts before compilation
Takes care of include files

ANSWER DOWNLOAD EXAMIANS APP

C Programming
"My salary was increased by 15%" Select the statement, which will EXACTLY reproduce the line of text above.

printf("My salary was increased by 15%!");
printf("My salary was increased by 15/%!");
printf("My salary was increased by 15%%!");
printf("My salary was increased by 15'%'!");

ANSWER DOWNLOAD EXAMIANS APP