Showing posts with label Education. Show all posts
Showing posts with label Education. Show all posts

C++ Programming-Pointer C++ Programming-Pointer

#include<iostream.h> #include<conio.h> class person { char name[50],sex[20],des[30]; int age; public: void...

Read more »
05:11

C++ Programming-Matrix multiplication C++ Programming-Matrix multiplication

#include<iostream.h> #include<conio.h> class met       {             int a[10][10],b[10][10],c[10][10...

Read more »
09:47

C++ Programming-Adding day C++ Programming-Adding day

#include<iostream.h> #include<conio.h> void main() { int day,month,year; clrscr(); int m[12]={31,28,31,30,31,3...

Read more »
06:59

C++ Programming-Stack operation C++ Programming-Stack operation

#include<iostream.h> #include<conio.h> class stack { int a[10],top,item,i; public: stack() { top=-1; }...

Read more »
06:52

C++ programming-Factorial of given number C++ programming-Factorial of given number

#include<iostream.h> #include<conio.h> void main() { clrscr(); int n; long int fact(int n); cout<<...

Read more »
06:49
 
HowTo © 2015 | HowTo | Design By HowZto | HOWTO
Top