skip to main
|
skip to sidebar
C++ Help
Pages
Home
Contact
Help
Functions
C++ Programs
(Under Progress)
Help
Home
Subscribe to:
Posts (Atom)
Categories
Arrays
(2)
C++ Programs
(3)
Functions
(1)
Loops
(2)
Matrix
(2)
Samples
(2)
Popular Posts
Program to find row sum and column sum of a matrix
#include <iostream.h> void main() { int A[10][10],i,j,r[10], c [10] ,row,col ; // I nput o f no of rows and columns cout...
Program to find the square of the larger number using a function (Return by reference method)
#include <iostream.h> int main() { int num1, num2, x; int sqlarge( int &, int& ); // Function prototype declared...
Program to find sum of individual diagonals of a matrix
#include <iostream.h> void main() { int A[10][10],i,j,row,col,sd1,sd2l // Enter number rows and columns cout << &qu...
Followers
Blog Archive
▼
2012
(3)
▼
December
(3)
Program to find sum of individual diagonals of a m...
Program to find row sum and column sum of a matrix
Program to find the square of the larger number us...
Powered by
Blogger
.
Categories
Arrays
(2)
C++ Programs
(3)
Functions
(1)
Loops
(2)
Matrix
(2)
Samples
(2)