int main()
{
double disc;
double item1 = 201.99;
double item2 = 20.56;
string message;
disc = calcDisc(item1, item2);
message = calcDisc();
return 0;
}
The two function calls will ... ?
Answer:
The two function calls will be handled seperately and the values they return are stored in variables "disc" as double and "message" as string type.Â
Comments
Leave a comment