Sunday, March 30, 2014

To print pattern of numbers


Lets learn more about printing of pattern of numbers. In this page I have written the program to print the pattern of numbers. The pattern would be like this:        1      123     12345   1234567 To get more idea have a look for the source code and the output below: The source code of the above...

Saturday, March 29, 2014

To print the entered string in reverse order without using library function


Lets learn something new about string.In this  page I have made a program to find the reverse order of the entered string without using standard library function.  For more idea have a look at the source code and the printed output given below: The output of the above program is given below: The source code of the above...

Thursday, March 27, 2014

A program to find the binary equivalent of the decimal number using function


I have written a program to find out the binary equivalent of the decimal number using function. Last time I had written the same program without using function. To have clear idea have a look for the source code and the output below: The output of the above program is: The main source code of the above output...

Saturday, March 15, 2014

Thermodynamics Tutorial No.2 Energy Transfer


1. A gas undergoes compression from an initial state of V₁ =0.1 m3, P₁ =200 KPa to a final state of V₂ =0.04 m3, P₂ =500 KPa. If the pressure varies linearly with volume during the process, determine the work transfer. 2. A gas undergoes  a polytropic process from an initial of 500 KPa and 0.02 m3 to a...

Thursday, March 13, 2014

What exactly C is?


image credit: shareprogrammingtips.com C is a high level programming language developed by Daniel Ritchie at Bell Laboratories by 1970s. C began more popular in the late seventies and began to replace the programming language at that time like PL/I, ALGOL,etc. Thus without advertisement C's reputation spread and its pool of users grew.It seems to be surprised that so...

Sunday, March 9, 2014

To display the pattern


As earlier page in this page also I have written the program to display the following pattern. 0 1 0 0 1 0 1 0 1 0 0 1 0 1 0 1 0 1 0 1 0 The output for the above program is: The source code for the above program is: This file contains bidirectional Unicode...

To display pattern of numbers


In this page I have written a simple program to display the pattern of numbers. To get more idea have a look for the source code and the output of the following progr The output of the following program is: The source code of the above output is: This file contains bidirectional Unicode text that may be interpreted...

Saturday, March 8, 2014

A Program that calculates the sum of the digits entered by the user successively until the sum reduces to a single digit


In this page I have written the program that calculates the sum successively until the sum reduces to a single digit. For this I have used nested loop as while and do while. For example, 12345=>1+2+3+4+5=>15=>1+5=>6. For more information have a look for the source code and the output below: The output of the program is: The main...

To arrange the entered words in ascending order using string


In the last page I have made the pattern of string. Now lets move forward. In this page I have made the program to find the ascending order of the words entered by the user. For this I have taken two standard library functions called strcmp and strcpy. For more idea have a look for the source code...

To display entered string in pattern


In the last program I have started string. Now in this program lets get some more idea about string. For this I am going to  print string called america in pattern. For more information have a look for the source code and output of the program. The output displayed is: The source code for the output given below...

Friday, March 7, 2014

WAP to print character and address of each character of string


This is the beginning program of the string. In this page I am going to enter the character and the address of each character will be displayed. For more information have a look for the simple source code and the output of the following program. The output of the following program is given in the right side: The...

To find whether the number is palindrome or not using function


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...

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...

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...

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...

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...

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...

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...

Saturday, March 1, 2014

To find the largest number from the list of the entered numbers using array


In this page  I have written the program to find the largest of the entered numbers using array. I have used swapping to get the descending order and then have displayed the number at 0 position. For more idea lets have a look for the source code and the output of the following program. ...

To find out the numbers that are divisible by one number and not by another number using array.


In this page I have written the program to find the numbers that are divisible by one number and not by another number. For more information ...

To print the pattern of rectangle entering the desired rows and columns


In this I have written the program to print the pattern of rectangle using loop. For more idea the souce code has been given below: ...

To find the sum of the entered number using function only


In this page I have written the program to find the sum of the entered number using function but not recursion: It can be done in this way: ...

To find the sum of the number entered using recursive function


In this page I have written the program to find the sum of the number entered using function. Lets take an example to be clear how the program works. ...

WAP to enter the values for matrix and display them in matrix form.


In this program I have used array to enter the values and display the values in matrix form. I will elaborate how the program works on the basis of the example given below: ...

Friday, February 28, 2014

To find the largest of the three numbers entered


In this page  I have written the source code to find the largest of the three numbers entered. Lets take an example. If we enter 5 9 3 as the three numbers then 9 will be displayed largest. For more idea ...

To find smallest of the three numbers


In this page I have written the source code to find the smallest of the three numbers entered. For example if 5,6 and 7 are entered by the user then 5 will be displayed smallest. For more idea ...

To find whether the number entered is prime or not


I have written the simple source code to find whether the entered number is prime or not. For this we have to know what is prime number. ...

To find the total sum upto the entered number using recursive function


In this program I have used the recursive function to find the total sum upto which the number user enters. For example if  the user enters 10. ...

Wednesday, February 26, 2014

To find the hcf between two numbers using recursion function


In this program I have given the concept of finding the hcf between two numbers using function. The highest common factor of integers x and y is the largest integer that evenly divides both x and y. The main points to be remember while doing this program is: ...

Use of switch statement


Switch statement is mainly used ...

To print the pattern in triangular shape using string


In this programme I have used string to print the pattern of triangle. For this ...

To find the largest of the four numbers entered by using function


In this programme I have given  the concept to find the largest of the four numbers using function. The main source code of the program is given below : ...

A program to print floyd's triangle


A floyd's triangle is an right angled triangular array of natural numbers. It is defined by filling the rows of the triangle ...

To find binary equivalent of the decimal number


In this program I have given the concept to convert binary number into decimal number. For example ...

To find the factorial of the entered number


In this programme I have given the concept to find the factorial of the number. For this we have to know what factorial is: ...

To find all the armstrong numbers between n1 and n2


In this programme I have given the concept to find the armstrong number between n1 and n2. For this in this programme I have taken n1 as 100 and n2 as 2000. You can take any positive number in place of n1 and n2. If you want to be more clear ...

To find whether an entered number is armstrong or not


In this programme I have given the concept that whether the input number is armstrong or not. For this we have to be clear about what the armstrong number is: I will make clear about it by the help of example: ...

Tuesday, February 25, 2014

To check whether a number is prime or composite using recursive function


In this page I have kept the concept of checking whether a number is prime or composite using recursive function.However 1 is neither prime nor composite but in this programme 1 has been shown as composite. The source code of this programme is ...

To find the cube of the number using recursion function


In this page I have given the concept how to find the cube of the number entered using recursion. The main point to remember is : ...

To find the area of circle using recursion function


In this programme I have given you the concept how to find the area of the circle using recursion function. I have used integer data types so the area of the circle will be displayed as the integer only. If you use float as data type ...

Write a program to find hcf between two numbers


In this program I have added how to find hcf using recursion function.For this first of all we should be clear about what hcf means. It means highest common factor. For example the hcf of 4 and 24 is 4 and the hcf of 4 and 5 is one. For clear concept ...

Monday, February 24, 2014

To find descending order of the number entered


In this programme I have given you the some concept how to arrange the the number in descending order. For this I have put one example in front of you: The source code of this programme is : ...

To pass one dimensional array to function


If we want to pass one dimensional array into function it can be done in this way I have taken examples of finding average of the sum of the numbers entered. In this programme i have taken numbers myself without using scanf. ...

To find factorial of the number using recursion


If we want to find the factorial of any num using recursion theorem&nbsp; this can be done in this way:<br /> for eg factorial of 5=5*4*3*2*1 <br /> ...

Write a program to find x to the power of y using recursion


If we want to find x to the power of y using recursion then it can be done in this way. ...