Predict the output:
#include<stdio.h>
void calculateprice(float value);
int main()
{
    float value=200.0;
    calculateprice(value);
    printf("the value is:%f\n",value);
    return 0;
}
void calculateprice(float value)
{
value += (0.18 * value);
printf("final price is:%f\n",value);
}


Posted on by