Some Basic Codes of C Language - Learn C Programming From Basic

Latest

A Place Where You Will Learn Easily C Languages.

Recent Post

BANNER 728X90

Saturday 10 November 2018

Some Basic Codes of C Language



Basic Code To Print Any Thing

Below Code are basic code of C lanuage To Print Anything Just Remember it.

  • #include<stdio.h>
  • #include<conio.h>
  • int main ()

  • {
  • printf("Hello World");
  • getch();

  • }


 Codes of C Language



  • /n : Refers To New Line
  • /t : Tab : Cursor Moves To The Next Tab Stop
  • /b : backspace : Cursor Moves One Space To The Left
  • /r : Return: Cursor Moves To The Begining Of The Current Line 
  • // : Line Ignored
  • /' : Single Quotation: Single Quatation Mark is Printed
  • /" : Double Quotation mark is Printed
  • %d : Is Integer


Some Things To Remember


getch: Hold The Program at screen

These are some basic codes of C language which we will use in our programs. 

No comments:

Post a Comment