Question: Using C. What would be printed from the following program when run using 2 4 as data? int s(int x, int y); int main() {
Using C.
What would be printed from the following program when run using 2 4 as data?
int s(int x, int y);
int main()
{
int a, b;
scanf(%d %d,&a,&b);
c = s(a,b);
printf(%d,c);
return 0;
}
int s (int x, int y)
{
return (x+y)%x;
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
