Friday, March 7, 2014

To check whether the entered number is palindrome or not


In the previous page I have written the program to read the number until user enters 1 and to display the no of even and odd number entered by the user. Now lets do something new. In this page I am going to write the program to find whether the entered .number is palindrome. For this we should know what palindrome means. If the reversed number is equal to the enterd number then the number is said to be palindrome.For example: 343 is palindrome.
The main output of the following program is:

The main source code of the program is:


WAP to read the number until 1 is encountered and also count the number of even and odd number entered by the user


In the last page I have written the program to find the transpose of the entered matrix. Now I have made a program that reads the number until user enters 1 and also display the no of even numbers and the odd numbers entered by the user. For more idea have a look for the source code and the output for the following program.
The output of the program is:
The source code for the above program is"

To find the transpose of the matrix of order m*n using array


In the last page I have  written a program to find the largest number in array. Now lets move towards something new. Now lets find the transpose of the entered matrix.For this we should know what transpose means. Transpose means changing rows into columns and vice versa. To get more idea lets have a look for the source code and the output for the program.







The source code of the above program is:


Thursday, March 6, 2014

To find the largest number in array using function


In the last program I have made the video of engineering drawing. Now lets move towards something new.
In this page I have written the program to find the largest number in an array using function. For this I have supposed the maximum number at first is of  zero position then I have used  the concept of replacing values. I have used argument with return values. For more idea have a look.

Wednesday, March 5, 2014

Video of IOE engineering drawing solution of orthographic projection (tutorial 5 question no 7)




 Here is a solution of ioe engineering drawing tutorial 5 orthographics projection question no 7

Monday, March 3, 2014

To display the sum of the diagonal of the matrix


In this page I have given the concept to find the sum of the diagonal element of the entered desired matrix. For more information have a look for the source code and the output of the program which is given below in this page.
First of all the output of the program is:


The source code for the above output is:


To find the sum of the matrix using function


In this program I have used the concept of finding the sum of the desired matrix using function. For  this the main concept that should be understood is how to pass array into function. I have given an example of 3*3 matrix. The user can make the program of any order using the given source code.
 For more idea have a look for the source code and the output which are given below:
The sample output is :

The main source code of the program is given below: