C Programming
Consider the following program fragment:for(c=1, sum=0; c <= 10; c++){ scanf("%d", &x); if( x < 0 ) continue; sum += x;}What would be the value of sum for the input 1, -1, 2, -2, 3, -3, 4, -4, 5, -5

15
30
10
-5
1

ANSWER DOWNLOAD EXAMIANS APP

C Programming
Use of functions

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

ANSWER DOWNLOAD EXAMIANS APP