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
-5
30
1
10

ANSWER DOWNLOAD EXAMIANS APP

C Programming
What is function?

Function is a block of statements that perform some specific task.
All of these
Function is the fundamental modular unit. A function is usually designed to perform a specific task.
Function is a block of code that performs a specific task. It has a name and it is reusable.

ANSWER DOWNLOAD EXAMIANS APP