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