#include<stdio.h>
int ju(int x, int y)
{
2*x+y;
return x;
}
void main()
{
int x = 2, y = 5;
y = ju(y,x);
x = ju(y,x); ;
printf("%d\n",x);
}
Find Output of the C program and
Please Solve It with Explanation to be marked as Brainliest.
Answers
Answered by
0
Answer:#include<stdio.h>
int mul(int, int); /* Function prototype */
int main()
{
int a = 4, b = 3, c;
c = mul(a, b);
printf("c = %d\n", c);
return 0;
}
int mul(int a, int b)
{
return (a * b);
return (a - b); /* Warning: Unreachable code */
}
Output:
c = 12
Explanation:
Similar questions