Search Blog

Sunday, February 20, 2022

How to Print any Statement More than 1 time using DO WHILE Loop?

            Here We Will Learn To Program C. I'll try To give my Best To Make you understand.

                                                               "Let's Begin"

A Programme to Print "Myself Sahil Saini" 10 time
                using DO WHILE Loop
 
Now I Will only Make to guys understand only the New Function. To Understand other thing 
Please Check My other BLOGS.

  • int i=1;
    do
    {
         printf("Myself Sahil Saini");
         i++;
    }
    while(i<11);
                       Here int i=1; int stand for Integer . Value of i is initialized here.                    SYNTAX:-[do{}while(text expression);].i++ stats that Value of i will increase by 1.

OUTPUT

Download Link Of Above Programme:-

How to Use it.
Download File >Go To Turboc3(or turboc folder)>bin>Paste File>
open Turbo c Application>File>open(or F3)>Select File
 
NOTE:- Above File Can Be Opened With Other Compilers(Like code blocks, visual studio, etc.), Some Changes Might Require.

THANKS

Wednesday, February 16, 2022

How to Print any Statement More than 1 time using WHILE Loop?

            Here We Will Learn To Program C. I'll try To give my Best To Make you understand.

                                                               "Let's Begin"

A Programme To Print "MySelf Sahil Saini " 10 Times using 
WHILE Loop

 Now I Will only Make to guys understand only the New Function. To Understand other thing Check My other BLOGS

  • int i=1;
    while(i<11)
    {
           printf("Myself Sahil Saini");
           i++;
    }

    Here int i=1; int stand for Integer . Value of i is initialized .  while(i<11){} [syntax :- while(Test expression){}]. The Loop will run till 10 it will stop at 11 or greater value. Hence It will run 10 times. You Can run it more by Changing Test Expression. Value is exceeded by 1 Using i++. We can do increment by 2 or Greater Value by writing i=i+2(for 2 Increment) or i=i+n(for Increment of n Natural Number).

OUTPUT

Download Link Of Above Programme:-

How to Use it.
Download File >Go To Turboc3(or turboc folder)>bin>Paste File>
open Turbo c Application>File>open(or F3)>Select File
 
NOTE:- Above File Can Be Opened With Other Compilers(Like code blocks, visual studio, etc.), Some Changes Might Require.

THANKS

Saturday, February 5, 2022

How to Print any Statement More than 1 time using FOR Loop?

            Here We Will Learn To Program C. I'll try To give my Best To Make you understand.

                                                               "Let's Begin"

A Programm to Print "Myself Sahil Saini" 10 times.

From Now I Will only Make to guys understand only the New Function. To Understand other thing Check My other BLOGS

  • for(i=1;i<11,i++)
    {
             printf("Myself Sahil Saini")
    }   
     Here FOR loop is used. SYNTAX-for(Initialization Statement; Test Expression; Increment) {}. In Initialization Statement we will Initialize or give the value of the variable(i=1). In Test Expression is the condition of the loop and will only run If the condition is True(i<11) Here the loop will close at i =11 or Greater Value. In Increment we increase the value of the Variable(i++) menas increament by 1.                        

Output

Download Link Of Above Programme:-

How to Use it.
Download File >Go To Turboc3(or turboc folder)>bin>Paste File>
open Turbo c Application>File>open(or F3)>Select File
 
NOTE:- Above File Can Be Opened With Other Compilers(Like code blocks, visual studio, etc.), Some Changes Might Require.
THANKS

Tuesday, February 1, 2022

How to do Comparison Of ANY Two Numbers?

            Here We Will Learn To Program C. I'll try To give my Best To Make you understand.

                                                               "Let's Begin"

A Program To Do Comparision Of Two Numbers

Lets Understand It.

  • #include<stdio.h>
    #include<conio.h>

    void main()

    {}
    This is the Starting of Nearly Every Programme.
    In this # is Preprocessor Directives used to Include a header File.
    stdio.h stands for Standard Input Output Header File and conio.h  stands for Console Input Output Header File. 
    stdio.h includes function like printf(),scanf(),etc.
    conio.h
    includes function like clrscr(),getch(),etc.
    void main()
    means starting pf main programme.
    "{}" program must be written in Between of curly brackets. 
  • clrscr() stands for Clear screen,used to clear screen.If we don't write it then we can see the old Output.
  • int a,b; here int stant for Integer And Allow only Numerical data to be Entered in a b and c.
    a and c represent  Variables.Variable  is a address or storage where the Data is Stored.
  • if(a>b)
    {
           printf("%d is Greater Number",a);
    }
    IF
    is conditional Statement means used to give condition. A conditional statement has only Two answer TRUE  and  FALSE. If is a TRUE conditional statement.
    Curly Brackets '{}' works like a Gate .If the condition(a>b) is true then the Data will Print or run inside the Bracket.If the Condition is FALSE then the next condition will be checked.  
  • else if(b>a)
    {
           print("%d is Greater Number",b);

    ELSE IF 
     is also a TRUE Conditional Statement.WE Can ADD as my condition We Have using else if().
  • else
    {
            printf("BOTH are Equal")
    }
    ELSE
    is a FALSE Conditional Statement.It prints or run False Data .
  • getch() stands for get character. It is important to see output or it is used to stop screen on output screen
OUTPUTS
a=23   &    b=12


a=12    &    b=23
                        
     
a=23    &   b=23


Download Link Of Above Programme:-

How to Use it.
Download File >Go To Turboc3(or turboc folder)>bin>Paste File>
open Turbo c Application>File>open(or F3)>Select File
 
NOTE:- Above File Can Be Opened With Other Compilers(Like code blocks, visual studio, etc.), Some Changes Might Require.

THANKS

How to Add Two Array(or Matrix) ?

    Here We Will Learn To Program C. I'll try To give my Best To Make you understand.                                                   ...