What will be the output of the following program
#include<stdio.h>void change(int,int);
int main()
{
int a=25,b=50;
change(a,b);
printf("The value assigned to a is: %d",a);
printf("n");
printf("The value assigned to of b is: %d",b);
return 0;
}
void change(int x,int y)
{
x=100;
y=200;