Question: Following is a user - defined function in a ( mathrm { C } + + ) program: ` ` ` int

Following is a user-defined function in a \(\mathrm{C}++\) program:
```
int getSum(int a, int b)
{
int s=0;
for(int k=a;k=b;k++)
s+=k;
return s;
}
```
Which one of the followings is correct?
\( s \) is global variable
s is a static variable
\( s \) is a looping variable
s is local variable
Following is a user - defined function in a \ ( \

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!