Predict the ouput:

#includestdio.h
int main()
{
float value=100.0;
calculateprice(value);
printf("value is :%f\n",value);
return 0;
}

void calculateprice(value)
{
value= value+(0.18*value);
printf("final price is=%f\n",value);
}

Posted on by