In C++ write a program that will receive 10 temperaturesexpressed in degree Celsius convert them to fahrenheit and displaythe converted temperature to the screen. After 10 temperatures havebeen processed the word “All temperature processed” are to bedisplayed to the screen. (formula F= (9/5)*C+32).
Answer
#include <iostream>using namespace std;int main() { double f, c; for (int i = 0; i < 10; ++i) { cout << “Enter temperature in celsius: “; cin >> c;
OR
OR