C Programming
Determine Output:void main(){ int i = -1; +i; printf("i = %d, +i = %d", i, +i);}

i = -1, +i = -1
None of These
i = -1, +i = 1
i = 1, +i = 1

ANSWER DOWNLOAD EXAMIANS APP

C Programming
Use of functions

Makes the debugging task easier.
Helps to avoid repeated programming across programs.
Enhances the logical clarity of the program.
All of these
Helps to avoid repeating a set of statements many times.

ANSWER DOWNLOAD EXAMIANS APP