c++ programs with output

Upload: anu-subedi

Post on 19-Oct-2015

43 views

Category:

Documents


0 download

DESCRIPTION

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

TRANSCRIPT

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