C++ programs with output

Embed Size (px)

DESCRIPTION

includes programs of c++ with their outputs,compiled through borland c++

Citation preview

C++ LAB WORKS

/* 1. Wap to convert Fahrenheit into centigrade using conversion function*/

#include#includeclass centigrade { private: int cen; public: centigrade() { cen=0; } centigrade(int cent) { cen=cent; } void display(); }; void centigrade::display() { cout