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

1
30
10
15
-5

ANSWER DOWNLOAD EXAMIANS APP

C Programming
C preprocessor

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

ANSWER DOWNLOAD EXAMIANS APP