Posts

C Program to Find Total of Even Integers

C Program for Reading Integer Numbers

we can give simple example to write C Program for reading Integer Numbers. The Various input formatting options for reading integers are experimented in the program shown in below C Program. The first scanf requests input data for three integer … Read More

C Program to Find Total of Even Integers

C Program to Find Greatest of Three Numbers

In this tutorial, we have shared a program that compares Program to find greatest of 3 numbers. The main objective is to study about decision statements such as’ if else’ statement that allow us to choose to execute one … Read More

C Program to Find Total of Even Integers

C Program to Calculate Area of Triangle

C Program to Calculate area of triangle using the formula area=sqrt(s(s-a)(s-b)(s-c)) where a,b,c are the sides of the triangle and s=(a+b+c)/2. The main Objectives is to study about basic building blocks such as constants, variables, keywords,operators, expressions … Read More

C Program to Find Total of Even Integers

C Program to Print an Integer Numbers

In this article, we will explain you, How to write a C Program to Print an Integer Numbers with an example.

The first scanf requests input data for three integer values a, b, and c, and accordingly three values 1, Read More

C Program to Find Total of Even Integers

C Program for Testing Character Type Use of getchar Function

In this Example, gives How to write Testing Character Type Use of getchar Function with an example.

The program of below requests the user to enter a character and displays a message on the screen telling the user whether the … Read More

C Program to Find Total of Even Integers

C Program to Calculate Bonus, Commission and Gross Salary

In this article, we will explain you, How to write a C Program to Calculate Bonus, Commission and Gross Salary of an Employee with an example.

Every company have some norms to calculate Bonus, Commission and Gross Salary for every Read More

C Program to Find Total of Even Integers

C Program Declarations – How to Assign Variables?

The below C Program shows and example of typical declarations, assignments and values stored in various types of variables.

C Program Declarations with Examples

The variables x and p have been declared as floating-point variables. Note that the way the … Read More