C Programming
What will be the value of sum after the following program is executed?void main(){ int sum=1, index = 9; do{ index = index – 1; sum *= 2; }while( index > 9 );}

0.25
2
1
9
0.5

ANSWER DOWNLOAD EXAMIANS APP

C Programming
C preprocessor

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

ANSWER DOWNLOAD EXAMIANS APP