Month: August 2015

Posted in Matrix

Sum of two matrix – C Program

sum of two matrix C Program – write a c program for enter two matrix and produce result as sum of two matrix.

Continue Reading Sum of two matrix – C Program
Posted in Matrix

Print Matrix 2 Dimensional array – C Program

Print Matrix C Program – Write a c Program for print a matrix using two dimensional array. For print matrix in c Program we use two for loop, one for row and other for column.

Continue Reading Print Matrix 2 Dimensional array – C Program
Posted in Basic

Fahrenheit to Celsius – C Program

Fahrenheit to Celsius – Write a C Program for Convert temperature from Fahrenheit to Celsius.

Continue Reading Fahrenheit to Celsius – C Program
Posted in Basic

Celsius to Fahrenheit – C Program

Celsius to Fahrenheit – Write a C Program for Convert temperature from Celsius to Fahrenheit.

Continue Reading Celsius to Fahrenheit – C Program
Posted in C Patterns

Print Pyramid Star Patterns – C Program

Print Pyramid Star Patterns, Reverse pyramid start patterns, Triangle star patterns, Inverted Triangle star patterns – C Program.

Continue Reading Print Pyramid Star Patterns – C Program
Posted in Recursion

Tower of Hanoi using Recursion – C Program

C Program – write a c program of Tower of Hanoi using Recursion. The tower of hanoi says if you can solve n-1 cases then you can easily solve n th cases.

Continue Reading Tower of Hanoi using Recursion – C Program
Posted in DropDownList Control

Country, State and City DropDownList Example in ASP.Net C#

Country, State and City DropDownList Example in ASP.Net C#. Cascading Dropdownlist control for country, state and city example using autopostback in asp.net.

Continue Reading Country, State and City DropDownList Example in ASP.Net C#
Posted in For loop

calculate compound interest – C Program

C Program – Write a C Program for calculate compound interest of given amount. Compound interest is interest of basic amount + interest.

Continue Reading calculate compound interest – C Program
Posted in Basic

Calculate Simple Interest – C Program

C Program – Write a C Program for calculate simple interest. Calculate simple interest to inputted amount for given number of year with interest rate.

Continue Reading Calculate Simple Interest – C Program
Posted in Basic

sum of two integer number – C Program

C Program – write a c program for sum of two given integer number. In this c Program we do simple summation of two integer number.

Continue Reading sum of two integer number – C Program
Posted in For loop

check the number is prime or not – C Program

prime or not in C Program – write a c program to check the given number is prime or not. The prime number is divisible only by itself.

Continue Reading check the number is prime or not – C Program
Posted in For loop

Print prime number – C Program

Prime number C program – Write a c program to display prime numbers up to inputted number. prime number series started like 2 3 5 7 11 13 17 19……

Continue Reading Print prime number – C Program