PROGRAM TO ADD TWO GIVEN TIME USING CPP May 17, 2017 Add Comment Edit #include<conio.h> #include<iostream.h> struct time { int hh; int mm; int ss; }; void main() ... Read More
PROGRAM TO FIND THE LENGTH USING CPP May 17, 2017 Add Comment Edit #include<conio.h> #include<iostream.h> struct length { int feet; int inch; }; void main() { struct leng... Read More
PROGRAM TO DRAW A LINE USING C AND CPP May 17, 2017 Add Comment Edit #include<graphics.h> #include<conio.h> int main() { int gd = DETECT, gm; /* initialization of graphic mode */ initgr... Read More