Computer Science, asked by meloyoung118, 10 months ago

Write a C++ program that outputs the following text on the screen. PRODUCT NAME PRICE Nasco Fridge 35.0000 Nasco Television 25.0000 Nasco cooking Stove 15.0000

Answers

Answered by warisaraihanw
0

Answer:

#include <stdio. h>

int main ()

{

printf(PRODUCT NAME PRICE

Nasco fridge 35.0000

Nasco television 25.0000

Nasco cooking Stove 15.0000

return 0

}

Similar questions