Can Someone convert this C++ to C language #include

Question Answered step-by-step Can Someone convert this C++ to C language #include… Can Someone convert this C++ to C language #include#include#includeusing namespace std;int main(){int start;int end;char command;float time, discount, length, rate;float gross, grossResult, result, tax, net;print:cout << "PLDT Telephone Call Charge" << endl;cout << "Start Time    : ";cin >> start;cout << "End Time      : ";cin >> end;if ((start < 0000) || (end >2400)){cout << "invalid Input.... ";}else {time = end - start;length = time * .60;result = (round (length));cout << "Length of call : " << result <<" minutes";if (result > 50)discount = 15;else if (start >= 801 && end <= 1200 && length >= 60) discount = 15;else if (start >= 1201 && end <= 1799 && length >= 60) discount = 15;else if (start >= 1800 && end <= 2400)discount = 50;else if (start >= 0001 && end <= 800)discount = 50;else if (start >= 801 && end <= 1200) discount = 0;else if (start >= 1201 && end <= 1799) discount = 0;cout << "nThe caller is entitled for a " << discount <<"% discount";gross = 0.40 * result;grossResult = gross;cout << "nGross Cost :P " << grossResult;tax = gross * .04;net = grossResult - discount;cout << setprecision(2) << fixed;cout << "nTax        :P " << tax;cout << "nNet Cost   :P " << endl;}again:cout << ("nEnter another [Y/N]: ");cin >> command;{if(command == ‘y’ || command == ‘Y’)goto print;else if(command == ‘n’ || command == ‘N’)return 0;}} Computer Science Engineering & Technology C++ Programming IT 1111 Share QuestionEmailCopy link Comments (0)