(Choose 1 answer)
What is the output when the sample code below is executed?#include<stdio.h>
int calc(int a, int b)
{
int x, y;x = a + b;
= a*y = a * b;
return(x + y);
}
int main(){
int p=3,q=4,r,s;r = calc(p,q);
s = calc(q,p);
printf("%d %d",r,s);
return 0;
}
A. 19 19
B. 3 4
C. 17 19
D. 18 18