Search Blog

Saturday, January 29, 2022

How to print your Name or Anything in C?

 Hi, Lets Begin from Starting.

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

                                                               "Let's Begin"

A Program to Print Your Name OR Anything
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.
  • printf("My self Sahil Saini "); .printf stands for print file. you can write anything instead of My self Sahil Saini (Your name,number,etc) but bracket, semicolan and quation mark will remain same.
getch() stands for get character. It is important to see output or it is used to stop screen on output screen.
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

No comments:

Post a Comment

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.                                                   ...