-C is a Procedural Programming Langauge.
-It was developed By the Dennis Ritchie in 1969.
Features :
-low-level access to memory.
-simple set of keywords and clean style.
Syntax:
#include< headorfile>
void main()
{
body;
}
-main() is a function that are automatically called when the program execute. or we can say that execution of every program is start with the main() function.
-We will further discuss that what is function in C language.
-Here Heador file is the precomplied file, that we use in our programs to access the In-Build Function.
Example:
stdio.h:
-standard input/output
-printf() function are define in it.
process.h
math.c
conio.h:
-console input/output
-getch(), clrscr() functions are define in it.
string.h:
-All string function are define in it.
Keywords in C language :
There are 32 Keywords in C language :
-auto
-break
-case
-char
-const
-continue
-default
-do
-int
-long
-register
-return
-short
-signed
-sizeof
-static
-struct
-switch
-typedef
-union
-unsigned
-void
-volatile
-while
-double
-else
-enum
-extern
-folat
-for
-goto
-if
How to run the C program:
-Install the Software like Turbo C,dev-c,code block, Visual Studio etc.
-Write the program.
-First compile the program.
-if there is no compiler Error.
-Then Run the program.
Topics To Cover :
200 programs in C language.
Graphics in C langauge.
Make Sound In C language.
Interview Question Based On C.
Objective Question in C.