Posts

Showing posts from January, 2022

Loop statements | do-while | while | for | #Tut-05

Image
 I n this tutorial we are going to cover the types of loops.. What is loop..? In the program so many times we come across the situation where we want to execute some part of the program again and again for some particular number of times. In such situations we make use of loop statements. When we want to repeat some part of procedure for some particular number of times then we make use of loops.. In this language there are three types loops 1. do-while 2. while 3. for

Control Statements | if-else | nested if-else | switch case | #Tut-04

Image
  Points to be cover.. 1. Statements and blocks 2. Control Statements If statements. Switch Statement. Conditional Operator Statement

Types of operators | #Tut-03

Image
Types of operators In C... I n this  tutorial we will learn about the types of operators present in C programming language with the help of examples.

Constants & their rules | keywords | operators | #Tut-02

Image
  Content to be covered.. 1. Constants 2. Rules to declare the constants 3. Keywords 4. Types of instruction 4. Operators Constants Constant in the program  is something what  that does not change throughout the program. Sometimes we need such a values in our program that should be remain as it is, so in such situation we simply define constants. In the fig. there are different types of constants are given. Most of the time we use integer and real constants.

Introduction to C language | #Tut-01

Image
    So, hey guys..     This is our very first lecture. In this lecture we will see the history of C language.     Here I have tried to give short and essential information about the C language.     Hope you would like it..😊 So, very firstly we will see how our first program looks like.. Program : #include <stdio.h> int main () {     printf ( "Hello World..!" );     return 0 ; } Output :  Hello World..! In the following way our program is always devided into the parts as shown in fig. below. fig. parts of program Now, we use an english language to writer our C programs. So, let us see which are those characters, digits and symbols which are allowed to use while writing the programs.  As well as we see that what is an identifier..? and what is variable..? Now as we know what the variable is, we should also know about the type of variables and what are rules for declaring the variables.. So, let's study what ar...