230 likes | 334 Views
Get details Of C Language Training Course Content at S & M Consultant. Overview and details introduction of C language. Contact Us at 1 650 585 2312. We are providing service worldwide and awarded as the best Oracle Online Training institute.<br>http://smconsultant.com/c-language-training-course-content-usa-uk-india-canada-singapore/
E N D
An Introduction to C Programming Language C Programming Language Training at S & M Consultant
Intro • C is the famous programming language designed to develop system application program. C Programming Language Training at S & M Consultant
Intro • It is known as the starting of every programming language all the basics of a program language starts from C language. • C is known as general purpose procedural programming language. C Programming Language Training at S & M Consultant
History • Developed by M. Dennis Ritchie at the Bell laboratories in the year of 1972. • C is known as high level language because it has the power of a lower level language and easy syntax like high level language. C Programming Language Training at S & M Consultant
Why C used as a professional programming language? • Easy to learn • It’s a structured programming language C Programming Language Training at S & M Consultant
Why C used as a professional programming language? • Can handle low level programs • Compiled code can be used in different computers C Programming Language Training at S & M Consultant
Features of C • C is a robust language • C is a highly portable language means once compiled; the code can be run in any computer. C Programming Language Training at S & M Consultant
What is Compiler? • Compiler is a computer program that transforms the human written language into machine level language. C Programming Language Training at S & M Consultant
What is Compiler? • In general words computer takes the code written by you and converts it into binary code. C Programming Language Training at S & M Consultant
Structure & Syntax of a C Program • #include<stdio.h> #include<conio.h> void Main() clrscr(); { Printf(“my first C program”); } C Programming Language Training at S & M Consultant
Description of Code:- • #- Prerocessor of program • Include-Include is a keyword C Programming Language Training at S & M Consultant
Description of Code:- • Stdio.h-Standard input/output header file • Conio.h-Console input/output header file C Programming Language Training at S & M Consultant
Description of Code:- • Void-is a keyword that collects the garbage value • Main()- main() identifies starting of the program execution C Programming Language Training at S & M Consultant
Description of Code:- • Clrscr()- To clear the console screen • {, }-Group all statements together • Printf()-It is a function to print the output on screen. C Programming Language Training at S & M Consultant
C Data types • Data type of C language mostly divided into 5 major types • int, char, float, double, void C Programming Language Training at S & M Consultant
C Data types C Programming Language Training at S & M Consultant
C Data types • Int –Used to identify an integer value • Char- Used to identify a character • Float- Used to identify floating point type • Double- Used to identify floating point type • Void- denotes to type with garbage value C Programming Language Training at S & M Consultant
Variable:- • Variable is a stored data memory allocated to use it in future and we can change the value too. C Programming Language Training at S & M Consultant
Variable:- • Syntax- type variable name; • Ex- int a, b, c; C Programming Language Training at S & M Consultant
Explanation of Example • Int-Data type • A, b, c variables C Programming Language Training at S & M Consultant
Explanation of Example • Int-Data type • A, b, c variables • ;-Identifies the end of statement. C Programming Language Training at S & M Consultant
End of Slide • This is a simple introduction to C basic that will be elaborated in further classes. If you want to be one of the programming professional then please visit our website for further details about C demo classes and new session. C Programming Language Training at S & M Consultant
Thank You C Programming Language Training at S & M Consultant