Hi friends, in this tutorial, you will learn how to write a program to find the greatest of three numbers in C language. Also read, Biggest of two numbers in C language Logic of the program:- Initially, we will declare four integer variables such as a,b,c, and another integer variable “big”. Now, we will assume […]
Category: C
This category includes all the tutorials and solutions in C programming.
Biggest of Two Numbers in C Language
Hi friends, in this tutorial you will learn how to write a program to find the biggest of two numbers in C language. Also, we can do it in different ways but in this example, we will do it in a simple way. Also read, Input Output Functions in C Language with Examples Logic of […]
Input Output Functions in C Language with Examples
Hi friends, in this tutorial, you will know the input output functions in C language. Basically, there are two functions mainly to read input from input devices and display the output to the output devices. Let’s discuss them one by one. Also read, Constant in C with Example Below are the two input output functions […]
Operators in C with examples
In this tutorial, you will learn the operators in c with examples one by one. C language uses different types of operators as given below Arithmetic operators Relational operators Logical operators Increment and decrement operators Assignment operators Conditional operator Bitwise operators Arithmetic Operators:- Arithmetic operators are used to perform various kinds of arithmetic operations. Also […]
Variable Declaration in C With Example
In this tutorial, you will learn the variable declaration in C language. A variable is an identifier or a name that is used to refer to a value and this value varies or changes during the program execution. A variable is written with a combination of letters, numbers, and special characters or underscores with the […]
Constant in C With Example
A constant in C is the unchanged value of a variable during the execution of the program. Suppose, if you declared an integer variable with a value of 10 as a constant variable and you want to change the value of that variable or assign a new value to that variable next time then you […]
Data Types in C with Examples
There are four basic data types in C language. They are given below along with the number of bytes occupied by them in the computer memory. (RAM) Data Type Bytes Occupied in RAM Value Range Value Range in Decimal char 1 byte -27 to 27-1 -128 to 127 int 2 bytes -215 to 215 -1 […]