SlideShare une entreprise Scribd logo
1  sur  30
Ph. No.: 4000670, 9729666670
Website:www.batracomputercentre.com
Email Id: info.jatinbatra@gmail.com
ISO CERTIFIED
45 Days C Language
Training In Ambala
BATRA COMPUTER CENTRE
Email Id: info.jatinbatra@gmail.com
Ph. No.: 4000670, 9729666670Website:www.batracomputercentre.com
The milestones in C's development as a language are
listed below:
• UNIX developed c. 1969 -- DEC PDP-7 Assembly
Language
• BCPL -- a user friendly OS providing powerful
development tools developed from BCPL. Assembler
tedious long and error prone.
• A new language ``B'' a second attempt. c. 1970.
• A totally new language ``C'' a successor to ``B''. c.
1971
• By 1973 UNIX OS almost totally written in ``C''.
Email Id: info.jatinbatra@gmail.com
Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
Email Id: info.jatinbatra@gmail.com
Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
We briefly list some of C's characteristics that define the
language.
• Small size
• Extensive use of function calls
• Loose typing -- unlike PASCAL
• Structured language
• Low level (Bitwise) programming readily available
• Pointer implementation - extensive use of pointers for
memory, array, structures and functions.
Email Id: info.jatinbatra@gmail.com
Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
C has now become a widely used professional
language for various reasons.
• It has high-level constructs.
• It can handle low-level activities.
• It produces efficient programs.
• It can be compiled on a variety of computers.
Email Id: info.jatinbatra@gmail.com
Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
Email Id: info.jatinbatra@gmail.com
Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
Email Id: info.jatinbatra@gmail.com
Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
C variable is a named location in a memory
where a program can manipulate the data. This
location is used to hold the value of the
variable. The value of the C variable may get
changed in the program.
Email Id: info.jatinbatra@gmail.com
Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
ANSI C allows you to declare constants. When
you declare a constant it is a bit like a variable
declaration except the value cannot be
changed.
Email Id: info.jatinbatra@gmail.com
Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
C has a concept of 'data types' which are used
to define a variable before its use. The
definition of a variable will assign storage for
the variable and define the type of data that
will be held in the location.
The value of a variable can be changed any
time.
Email Id: info.jatinbatra@gmail.com
Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
• C has the following basic built-in data types.
• int
• float
• double
• char
Email Id: info.jatinbatra@gmail.com
Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
An operator is a symbol that tells the compiler to
perform specific mathematical or logical functions.
C language is rich in built-in operators and
provides the following types of operators −
• Arithmetic Operators
• Relational Operators
• Logical Operators
• Bitwise Operators
• Assignment Operators
• Misc Operators
Email Id: info.jatinbatra@gmail.com
Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
Email Id: info.jatinbatra@gmail.com
Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
A control statement is a statement that
determines whether other statements will be
executed. An if statement decides whether to
execute another statement, or decides which of
two statements to execute. A loop decides how
many times to execute another statement. C
provides two styles of flow control:
• Branching
• Looping
Email Id: info.jatinbatra@gmail.com
Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
Branching is so called because the program
chooses to follow one branch or another.
Branching is deciding what actions to take.
• If Statement
• If Else Statement
• Switch Statement
Email Id: info.jatinbatra@gmail.com
Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
Loops provide a way to repeat commands and
control how many times they are repeated. C
provides a number of looping way. looping is
deciding how many times to take a certain
action.
• For Loop
• While Loop
• Do While Loop
Email Id: info.jatinbatra@gmail.com
Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
A function is a group of statements that
together perform a task. Every C program has
at least one function, which is main(), and all
the most trivial programs can define additional
functions.
Email Id: info.jatinbatra@gmail.com
Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
Arrays a kind of data structure that can store a
fixed-size sequential collection of elements of
the same type. An array is used to store a
collection of data, but it is often more useful to
think of an array as a collection of variables of
the same type.
Email Id: info.jatinbatra@gmail.com
Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
Strings are actually one-dimensional array of
characters terminated by a null character '0'.
Thus a null-terminated string contains the
characters that comprise the string followed by
a null.
Email Id: info.jatinbatra@gmail.com
Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
A pointer is a variable whose value is the
address of another variable, i.e., direct address
of the memory location.
Email Id: info.jatinbatra@gmail.com
Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
• Arrays allow to define type of variables that
can hold several data items of the same kind.
Similarly structure is another user defined
data type available in C that allows to
combine data items of different kinds.
• Structures are used to represent a record.
Suppose you want to keep track of your
books in a library.
Email Id: info.jatinbatra@gmail.com
Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
A union is a special data type available in C that
allows to store different data types in the same
memory location. You can define a union with
many members, but only one member can
contain a value at any given time. Unions
provide an efficient way of using the same
memory location for multiple-purpose.
Email Id: info.jatinbatra@gmail.com
Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
Programming
Language ‘C’
Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
Email Id: info.jatinbatra@gmail.com
 Introduction
 Control Statements
 Functions
 Arrays
 Strings
 Pointers
 Structure
 Union
Email Id: info.jatinbatra@gmail.com
Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
Email Id: info.jatinbatra@gmail.com
Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
ISO CERTIFIED
Email Id: info.jatinbatra@gmail.com
Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
Email Id: info.jatinbatra@gmail.com
Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
ADDRESS:
SCO-15 Dayal Bagh,
Ambala Cantt 133001
Near Panchmukhi Hanuman Mandir
Haryana.
Ph. No. : 9729666670, 4000670
E-Mail ID : info.jatinbatra@gmail.com
Website : www.batracomputercentre.com
Email Id: info.jatinbatra@gmail.com
Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
Email Id: info.jatinbatra@gmail.com
Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670

Contenu connexe

En vedette

The GKIM digital way
The GKIM digital wayThe GKIM digital way
The GKIM digital wayIan Morrison
 
Newsletter the ozone
Newsletter the ozoneNewsletter the ozone
Newsletter the ozonetoniabitar
 
Communication plan
Communication planCommunication plan
Communication planbuddahgurl27
 
Sornnimul Khut's Master Thesis-A Case Study of Cambodian Crowdfunding Framing...
Sornnimul Khut's Master Thesis-A Case Study of Cambodian Crowdfunding Framing...Sornnimul Khut's Master Thesis-A Case Study of Cambodian Crowdfunding Framing...
Sornnimul Khut's Master Thesis-A Case Study of Cambodian Crowdfunding Framing...Sornnimul Khut
 
Kb 2 peran fungsi perawat komunitas
Kb 2   peran fungsi perawat komunitasKb 2   peran fungsi perawat komunitas
Kb 2 peran fungsi perawat komunitaspjj_kemenkes
 
How to develop a Sense of Place
How to develop a Sense of PlaceHow to develop a Sense of Place
How to develop a Sense of PlaceGeoBlogs
 
Berpikir Kritis,Trend dan Perubahan yang Mempengaruhi Dokumentasi Keperawatan
Berpikir Kritis,Trend dan Perubahan yang Mempengaruhi Dokumentasi KeperawatanBerpikir Kritis,Trend dan Perubahan yang Mempengaruhi Dokumentasi Keperawatan
Berpikir Kritis,Trend dan Perubahan yang Mempengaruhi Dokumentasi Keperawatanpjj_kemenkes
 
Khicheeliin tuluvluguu
Khicheeliin tuluvluguuKhicheeliin tuluvluguu
Khicheeliin tuluvluguubhishgee
 
Berpikir Kritis,Trend dan Perubahan yang Mempengaruhi Dokumentasi Keperawatan
Berpikir Kritis,Trend dan Perubahan yang Mempengaruhi Dokumentasi KeperawatanBerpikir Kritis,Trend dan Perubahan yang Mempengaruhi Dokumentasi Keperawatan
Berpikir Kritis,Trend dan Perubahan yang Mempengaruhi Dokumentasi Keperawatanpjj_kemenkes
 
Modul 3 kb 2 kdm ii
Modul 3 kb 2 kdm iiModul 3 kb 2 kdm ii
Modul 3 kb 2 kdm iipjj_kemenkes
 
Standard kompetensi bidan
Standard kompetensi bidanStandard kompetensi bidan
Standard kompetensi bidanJoni Iswanto
 
STRES, ADAPTASI, DAN HOMEOSTASIS
STRES, ADAPTASI, DAN HOMEOSTASISSTRES, ADAPTASI, DAN HOMEOSTASIS
STRES, ADAPTASI, DAN HOMEOSTASISNursestikes
 
Dove leave on - Integrated Communications Plan
Dove leave on - Integrated Communications Plan Dove leave on - Integrated Communications Plan
Dove leave on - Integrated Communications Plan An Le K.
 
Strategic Communication Plan Synthesis Proposal for Talenti
Strategic Communication Plan Synthesis Proposal for TalentiStrategic Communication Plan Synthesis Proposal for Talenti
Strategic Communication Plan Synthesis Proposal for TalentiAnna Ferrari
 
Company Profile Pronusa Creative Indonesia
Company Profile Pronusa Creative IndonesiaCompany Profile Pronusa Creative Indonesia
Company Profile Pronusa Creative Indonesiapronusa
 
Peran, Fungsi dan tugas Perawat,
Peran, Fungsi dan tugas Perawat,Peran, Fungsi dan tugas Perawat,
Peran, Fungsi dan tugas Perawat,pjj_kemenkes
 

En vedette (20)

The GKIM digital way
The GKIM digital wayThe GKIM digital way
The GKIM digital way
 
Newsletter the ozone
Newsletter the ozoneNewsletter the ozone
Newsletter the ozone
 
Communication plan
Communication planCommunication plan
Communication plan
 
Sornnimul Khut's Master Thesis-A Case Study of Cambodian Crowdfunding Framing...
Sornnimul Khut's Master Thesis-A Case Study of Cambodian Crowdfunding Framing...Sornnimul Khut's Master Thesis-A Case Study of Cambodian Crowdfunding Framing...
Sornnimul Khut's Master Thesis-A Case Study of Cambodian Crowdfunding Framing...
 
Kb 2 peran fungsi perawat komunitas
Kb 2   peran fungsi perawat komunitasKb 2   peran fungsi perawat komunitas
Kb 2 peran fungsi perawat komunitas
 
How to develop a Sense of Place
How to develop a Sense of PlaceHow to develop a Sense of Place
How to develop a Sense of Place
 
4
44
4
 
Modul 2
Modul 2Modul 2
Modul 2
 
Clases sociales
Clases socialesClases sociales
Clases sociales
 
Berpikir Kritis,Trend dan Perubahan yang Mempengaruhi Dokumentasi Keperawatan
Berpikir Kritis,Trend dan Perubahan yang Mempengaruhi Dokumentasi KeperawatanBerpikir Kritis,Trend dan Perubahan yang Mempengaruhi Dokumentasi Keperawatan
Berpikir Kritis,Trend dan Perubahan yang Mempengaruhi Dokumentasi Keperawatan
 
Khicheeliin tuluvluguu
Khicheeliin tuluvluguuKhicheeliin tuluvluguu
Khicheeliin tuluvluguu
 
Berpikir Kritis,Trend dan Perubahan yang Mempengaruhi Dokumentasi Keperawatan
Berpikir Kritis,Trend dan Perubahan yang Mempengaruhi Dokumentasi KeperawatanBerpikir Kritis,Trend dan Perubahan yang Mempengaruhi Dokumentasi Keperawatan
Berpikir Kritis,Trend dan Perubahan yang Mempengaruhi Dokumentasi Keperawatan
 
Modul 3 kb 2 kdm ii
Modul 3 kb 2 kdm iiModul 3 kb 2 kdm ii
Modul 3 kb 2 kdm ii
 
Standard kompetensi bidan
Standard kompetensi bidanStandard kompetensi bidan
Standard kompetensi bidan
 
STRES, ADAPTASI, DAN HOMEOSTASIS
STRES, ADAPTASI, DAN HOMEOSTASISSTRES, ADAPTASI, DAN HOMEOSTASIS
STRES, ADAPTASI, DAN HOMEOSTASIS
 
Dove leave on - Integrated Communications Plan
Dove leave on - Integrated Communications Plan Dove leave on - Integrated Communications Plan
Dove leave on - Integrated Communications Plan
 
Strategic Communication Plan Synthesis Proposal for Talenti
Strategic Communication Plan Synthesis Proposal for TalentiStrategic Communication Plan Synthesis Proposal for Talenti
Strategic Communication Plan Synthesis Proposal for Talenti
 
ETIKA UMUM
 ETIKA UMUM ETIKA UMUM
ETIKA UMUM
 
Company Profile Pronusa Creative Indonesia
Company Profile Pronusa Creative IndonesiaCompany Profile Pronusa Creative Indonesia
Company Profile Pronusa Creative Indonesia
 
Peran, Fungsi dan tugas Perawat,
Peran, Fungsi dan tugas Perawat,Peran, Fungsi dan tugas Perawat,
Peran, Fungsi dan tugas Perawat,
 

Similaire à 45 Days C Language Training In Ambala! Batra Computer Centre

C Language Training in Ambala ! Batra Computer Centre
C Language Training in Ambala ! Batra Computer CentreC Language Training in Ambala ! Batra Computer Centre
C Language Training in Ambala ! Batra Computer Centrejatin batra
 
45 Days C++ Programming Language Training in Ambala
45 Days C++ Programming Language Training in Ambala45 Days C++ Programming Language Training in Ambala
45 Days C++ Programming Language Training in Ambalajatin batra
 
C Language Training in Ambala ! Batra Computer Centre
C Language Training in Ambala ! Batra Computer CentreC Language Training in Ambala ! Batra Computer Centre
C Language Training in Ambala ! Batra Computer Centrejatin batra
 
Data Science in the Cloud @StitchFix
Data Science in the Cloud @StitchFixData Science in the Cloud @StitchFix
Data Science in the Cloud @StitchFixC4Media
 
Open Source North - MongoDB Advanced Schema Design Patterns
Open Source North - MongoDB Advanced Schema Design PatternsOpen Source North - MongoDB Advanced Schema Design Patterns
Open Source North - MongoDB Advanced Schema Design PatternsMatthew Kalan
 
C programming Training Institute in Ambala ! Batra Computer Centre
C programming Training Institute in Ambala ! Batra Computer CentreC programming Training Institute in Ambala ! Batra Computer Centre
C programming Training Institute in Ambala ! Batra Computer Centrejatin batra
 
6 Week Basic Computer Trainning In Ambala! BATRA COMPUTER CENTRE
6 Week Basic Computer Trainning In Ambala! BATRA COMPUTER CENTRE6 Week Basic Computer Trainning In Ambala! BATRA COMPUTER CENTRE
6 Week Basic Computer Trainning In Ambala! BATRA COMPUTER CENTREjatin batra
 
Dreamweaver Training Institute in Ambala ! Batra Computer Centre
Dreamweaver Training Institute in Ambala ! Batra Computer CentreDreamweaver Training Institute in Ambala ! Batra Computer Centre
Dreamweaver Training Institute in Ambala ! Batra Computer Centrejatin batra
 
Formidable College Supplemental Essays Th
Formidable College Supplemental Essays ThFormidable College Supplemental Essays Th
Formidable College Supplemental Essays ThMegan Mack
 
(Effective Software Development Series) Bill Wagner - Effective C# (Covers C#...
(Effective Software Development Series) Bill Wagner - Effective C# (Covers C#...(Effective Software Development Series) Bill Wagner - Effective C# (Covers C#...
(Effective Software Development Series) Bill Wagner - Effective C# (Covers C#...Nguyễn Đăng Nhật
 
7 Database Mistakes YOU Are Making -- Linuxfest Northwest 2019
7 Database Mistakes YOU Are Making -- Linuxfest Northwest 20197 Database Mistakes YOU Are Making -- Linuxfest Northwest 2019
7 Database Mistakes YOU Are Making -- Linuxfest Northwest 2019Dave Stokes
 
Mca1020 programming in c
Mca1020  programming in cMca1020  programming in c
Mca1020 programming in csmumbahelp
 
6 Month Training of HTML in Ambala ! Batra Computer Centre
6 Month Training of HTML in Ambala ! Batra Computer Centre6 Month Training of HTML in Ambala ! Batra Computer Centre
6 Month Training of HTML in Ambala ! Batra Computer Centrejatin batra
 
Web based interactive big data visualization
Web based interactive big data visualizationWeb based interactive big data visualization
Web based interactive big data visualizationWenli Zhang
 
Basic Computer Training Centre in Ambala ! BATRA COMPUTER CENTRE
Basic Computer Training Centre in Ambala ! BATRA COMPUTER CENTREBasic Computer Training Centre in Ambala ! BATRA COMPUTER CENTRE
Basic Computer Training Centre in Ambala ! BATRA COMPUTER CENTREjatin batra
 
Effective Microservices In a Data-centric World
Effective Microservices In a Data-centric WorldEffective Microservices In a Data-centric World
Effective Microservices In a Data-centric WorldRandy Shoup
 
JavaScript Training in Ambala ! Batra Computer Centre
JavaScript Training in Ambala ! Batra Computer CentreJavaScript Training in Ambala ! Batra Computer Centre
JavaScript Training in Ambala ! Batra Computer Centrejatin batra
 
6 Month Training in Web Designing ! Batra Computer Centre
6 Month Training in Web Designing ! Batra Computer Centre6 Month Training in Web Designing ! Batra Computer Centre
6 Month Training in Web Designing ! Batra Computer Centrejatin batra
 
Time series analysis : Refresher and Innovations
Time series analysis : Refresher and InnovationsTime series analysis : Refresher and Innovations
Time series analysis : Refresher and InnovationsQuantUniversity
 
MongoDB Stich Overview
MongoDB Stich OverviewMongoDB Stich Overview
MongoDB Stich OverviewMongoDB
 

Similaire à 45 Days C Language Training In Ambala! Batra Computer Centre (20)

C Language Training in Ambala ! Batra Computer Centre
C Language Training in Ambala ! Batra Computer CentreC Language Training in Ambala ! Batra Computer Centre
C Language Training in Ambala ! Batra Computer Centre
 
45 Days C++ Programming Language Training in Ambala
45 Days C++ Programming Language Training in Ambala45 Days C++ Programming Language Training in Ambala
45 Days C++ Programming Language Training in Ambala
 
C Language Training in Ambala ! Batra Computer Centre
C Language Training in Ambala ! Batra Computer CentreC Language Training in Ambala ! Batra Computer Centre
C Language Training in Ambala ! Batra Computer Centre
 
Data Science in the Cloud @StitchFix
Data Science in the Cloud @StitchFixData Science in the Cloud @StitchFix
Data Science in the Cloud @StitchFix
 
Open Source North - MongoDB Advanced Schema Design Patterns
Open Source North - MongoDB Advanced Schema Design PatternsOpen Source North - MongoDB Advanced Schema Design Patterns
Open Source North - MongoDB Advanced Schema Design Patterns
 
C programming Training Institute in Ambala ! Batra Computer Centre
C programming Training Institute in Ambala ! Batra Computer CentreC programming Training Institute in Ambala ! Batra Computer Centre
C programming Training Institute in Ambala ! Batra Computer Centre
 
6 Week Basic Computer Trainning In Ambala! BATRA COMPUTER CENTRE
6 Week Basic Computer Trainning In Ambala! BATRA COMPUTER CENTRE6 Week Basic Computer Trainning In Ambala! BATRA COMPUTER CENTRE
6 Week Basic Computer Trainning In Ambala! BATRA COMPUTER CENTRE
 
Dreamweaver Training Institute in Ambala ! Batra Computer Centre
Dreamweaver Training Institute in Ambala ! Batra Computer CentreDreamweaver Training Institute in Ambala ! Batra Computer Centre
Dreamweaver Training Institute in Ambala ! Batra Computer Centre
 
Formidable College Supplemental Essays Th
Formidable College Supplemental Essays ThFormidable College Supplemental Essays Th
Formidable College Supplemental Essays Th
 
(Effective Software Development Series) Bill Wagner - Effective C# (Covers C#...
(Effective Software Development Series) Bill Wagner - Effective C# (Covers C#...(Effective Software Development Series) Bill Wagner - Effective C# (Covers C#...
(Effective Software Development Series) Bill Wagner - Effective C# (Covers C#...
 
7 Database Mistakes YOU Are Making -- Linuxfest Northwest 2019
7 Database Mistakes YOU Are Making -- Linuxfest Northwest 20197 Database Mistakes YOU Are Making -- Linuxfest Northwest 2019
7 Database Mistakes YOU Are Making -- Linuxfest Northwest 2019
 
Mca1020 programming in c
Mca1020  programming in cMca1020  programming in c
Mca1020 programming in c
 
6 Month Training of HTML in Ambala ! Batra Computer Centre
6 Month Training of HTML in Ambala ! Batra Computer Centre6 Month Training of HTML in Ambala ! Batra Computer Centre
6 Month Training of HTML in Ambala ! Batra Computer Centre
 
Web based interactive big data visualization
Web based interactive big data visualizationWeb based interactive big data visualization
Web based interactive big data visualization
 
Basic Computer Training Centre in Ambala ! BATRA COMPUTER CENTRE
Basic Computer Training Centre in Ambala ! BATRA COMPUTER CENTREBasic Computer Training Centre in Ambala ! BATRA COMPUTER CENTRE
Basic Computer Training Centre in Ambala ! BATRA COMPUTER CENTRE
 
Effective Microservices In a Data-centric World
Effective Microservices In a Data-centric WorldEffective Microservices In a Data-centric World
Effective Microservices In a Data-centric World
 
JavaScript Training in Ambala ! Batra Computer Centre
JavaScript Training in Ambala ! Batra Computer CentreJavaScript Training in Ambala ! Batra Computer Centre
JavaScript Training in Ambala ! Batra Computer Centre
 
6 Month Training in Web Designing ! Batra Computer Centre
6 Month Training in Web Designing ! Batra Computer Centre6 Month Training in Web Designing ! Batra Computer Centre
6 Month Training in Web Designing ! Batra Computer Centre
 
Time series analysis : Refresher and Innovations
Time series analysis : Refresher and InnovationsTime series analysis : Refresher and Innovations
Time series analysis : Refresher and Innovations
 
MongoDB Stich Overview
MongoDB Stich OverviewMongoDB Stich Overview
MongoDB Stich Overview
 

Plus de jatin batra

Best SMO Training &Coaching in Ambala
Best SMO Training &Coaching in AmbalaBest SMO Training &Coaching in Ambala
Best SMO Training &Coaching in Ambalajatin batra
 
Best HTML Training &Coaching in Ambala
Best HTML Training &Coaching in AmbalaBest HTML Training &Coaching in Ambala
Best HTML Training &Coaching in Ambalajatin batra
 
Best SEO Training & Coaching in Ambala
Best SEO Training & Coaching in AmbalaBest SEO Training & Coaching in Ambala
Best SEO Training & Coaching in Ambalajatin batra
 
Best Photoshop Training in Ambala
 Best Photoshop Training  in Ambala Best Photoshop Training  in Ambala
Best Photoshop Training in Ambalajatin batra
 
Best C Programming Training & Coaching in Ambala
Best C Programming Training & Coaching in AmbalaBest C Programming Training & Coaching in Ambala
Best C Programming Training & Coaching in Ambalajatin batra
 
BASIC COMPUTER TRAINING & COACHING CENTRE IN AMBALA CANTT
BASIC COMPUTER TRAINING & COACHING CENTRE IN AMBALA CANTTBASIC COMPUTER TRAINING & COACHING CENTRE IN AMBALA CANTT
BASIC COMPUTER TRAINING & COACHING CENTRE IN AMBALA CANTTjatin batra
 
Web Browser ! Batra Computer Centre
Web Browser ! Batra Computer CentreWeb Browser ! Batra Computer Centre
Web Browser ! Batra Computer Centrejatin batra
 
Search Engine Training in Ambala ! Batra Computer Centre
Search Engine Training in Ambala ! Batra Computer CentreSearch Engine Training in Ambala ! Batra Computer Centre
Search Engine Training in Ambala ! Batra Computer Centrejatin batra
 
Networking Training in Ambala ! Batra Computer Centre
Networking Training in Ambala ! Batra Computer CentreNetworking Training in Ambala ! Batra Computer Centre
Networking Training in Ambala ! Batra Computer Centrejatin batra
 
SQL Training in Ambala ! BATRA COMPUTER CENTRE
SQL Training in Ambala ! BATRA COMPUTER CENTRESQL Training in Ambala ! BATRA COMPUTER CENTRE
SQL Training in Ambala ! BATRA COMPUTER CENTREjatin batra
 
Networking ! BATRA COMPUTER CENTRE
Networking ! BATRA COMPUTER CENTRENetworking ! BATRA COMPUTER CENTRE
Networking ! BATRA COMPUTER CENTREjatin batra
 
Ms Office 2010 Training in Ambala ! BATRA COMPUTER CENTRE
Ms Office 2010 Training in Ambala ! BATRA COMPUTER CENTREMs Office 2010 Training in Ambala ! BATRA COMPUTER CENTRE
Ms Office 2010 Training in Ambala ! BATRA COMPUTER CENTREjatin batra
 
Corel Draw Training Institute in Ambala ! BATRA COMPUTER CENTRE
Corel Draw Training Institute in Ambala ! BATRA COMPUTER CENTRECorel Draw Training Institute in Ambala ! BATRA COMPUTER CENTRE
Corel Draw Training Institute in Ambala ! BATRA COMPUTER CENTREjatin batra
 
Basic Computer Training Institute ! BATRA COMPUTER CENTRE
Basic Computer Training Institute ! BATRA COMPUTER CENTREBasic Computer Training Institute ! BATRA COMPUTER CENTRE
Basic Computer Training Institute ! BATRA COMPUTER CENTREjatin batra
 
HTML Training Institute in Ambala ! Batra Computer Centre
HTML Training Institute in Ambala ! Batra Computer CentreHTML Training Institute in Ambala ! Batra Computer Centre
HTML Training Institute in Ambala ! Batra Computer Centrejatin batra
 
Benefits of Web Browser ! Batra Computer Centre
Benefits of Web Browser ! Batra Computer CentreBenefits of Web Browser ! Batra Computer Centre
Benefits of Web Browser ! Batra Computer Centrejatin batra
 
SEO Training in Ambala ! Batra Computer Centre
SEO Training in Ambala ! Batra Computer CentreSEO Training in Ambala ! Batra Computer Centre
SEO Training in Ambala ! Batra Computer Centrejatin batra
 
Internet Training Centre in Ambala ! Batra Computer Centre
Internet Training Centre in Ambala ! Batra Computer CentreInternet Training Centre in Ambala ! Batra Computer Centre
Internet Training Centre in Ambala ! Batra Computer Centrejatin batra
 
Basic Computer Training Centre in Ambala ! Batra Computer Centre
Basic Computer Training Centre in Ambala ! Batra Computer CentreBasic Computer Training Centre in Ambala ! Batra Computer Centre
Basic Computer Training Centre in Ambala ! Batra Computer Centrejatin batra
 
Web Designing Training in Ambala ! Batra Computer Centre
Web Designing Training in Ambala ! Batra Computer CentreWeb Designing Training in Ambala ! Batra Computer Centre
Web Designing Training in Ambala ! Batra Computer Centrejatin batra
 

Plus de jatin batra (20)

Best SMO Training &Coaching in Ambala
Best SMO Training &Coaching in AmbalaBest SMO Training &Coaching in Ambala
Best SMO Training &Coaching in Ambala
 
Best HTML Training &Coaching in Ambala
Best HTML Training &Coaching in AmbalaBest HTML Training &Coaching in Ambala
Best HTML Training &Coaching in Ambala
 
Best SEO Training & Coaching in Ambala
Best SEO Training & Coaching in AmbalaBest SEO Training & Coaching in Ambala
Best SEO Training & Coaching in Ambala
 
Best Photoshop Training in Ambala
 Best Photoshop Training  in Ambala Best Photoshop Training  in Ambala
Best Photoshop Training in Ambala
 
Best C Programming Training & Coaching in Ambala
Best C Programming Training & Coaching in AmbalaBest C Programming Training & Coaching in Ambala
Best C Programming Training & Coaching in Ambala
 
BASIC COMPUTER TRAINING & COACHING CENTRE IN AMBALA CANTT
BASIC COMPUTER TRAINING & COACHING CENTRE IN AMBALA CANTTBASIC COMPUTER TRAINING & COACHING CENTRE IN AMBALA CANTT
BASIC COMPUTER TRAINING & COACHING CENTRE IN AMBALA CANTT
 
Web Browser ! Batra Computer Centre
Web Browser ! Batra Computer CentreWeb Browser ! Batra Computer Centre
Web Browser ! Batra Computer Centre
 
Search Engine Training in Ambala ! Batra Computer Centre
Search Engine Training in Ambala ! Batra Computer CentreSearch Engine Training in Ambala ! Batra Computer Centre
Search Engine Training in Ambala ! Batra Computer Centre
 
Networking Training in Ambala ! Batra Computer Centre
Networking Training in Ambala ! Batra Computer CentreNetworking Training in Ambala ! Batra Computer Centre
Networking Training in Ambala ! Batra Computer Centre
 
SQL Training in Ambala ! BATRA COMPUTER CENTRE
SQL Training in Ambala ! BATRA COMPUTER CENTRESQL Training in Ambala ! BATRA COMPUTER CENTRE
SQL Training in Ambala ! BATRA COMPUTER CENTRE
 
Networking ! BATRA COMPUTER CENTRE
Networking ! BATRA COMPUTER CENTRENetworking ! BATRA COMPUTER CENTRE
Networking ! BATRA COMPUTER CENTRE
 
Ms Office 2010 Training in Ambala ! BATRA COMPUTER CENTRE
Ms Office 2010 Training in Ambala ! BATRA COMPUTER CENTREMs Office 2010 Training in Ambala ! BATRA COMPUTER CENTRE
Ms Office 2010 Training in Ambala ! BATRA COMPUTER CENTRE
 
Corel Draw Training Institute in Ambala ! BATRA COMPUTER CENTRE
Corel Draw Training Institute in Ambala ! BATRA COMPUTER CENTRECorel Draw Training Institute in Ambala ! BATRA COMPUTER CENTRE
Corel Draw Training Institute in Ambala ! BATRA COMPUTER CENTRE
 
Basic Computer Training Institute ! BATRA COMPUTER CENTRE
Basic Computer Training Institute ! BATRA COMPUTER CENTREBasic Computer Training Institute ! BATRA COMPUTER CENTRE
Basic Computer Training Institute ! BATRA COMPUTER CENTRE
 
HTML Training Institute in Ambala ! Batra Computer Centre
HTML Training Institute in Ambala ! Batra Computer CentreHTML Training Institute in Ambala ! Batra Computer Centre
HTML Training Institute in Ambala ! Batra Computer Centre
 
Benefits of Web Browser ! Batra Computer Centre
Benefits of Web Browser ! Batra Computer CentreBenefits of Web Browser ! Batra Computer Centre
Benefits of Web Browser ! Batra Computer Centre
 
SEO Training in Ambala ! Batra Computer Centre
SEO Training in Ambala ! Batra Computer CentreSEO Training in Ambala ! Batra Computer Centre
SEO Training in Ambala ! Batra Computer Centre
 
Internet Training Centre in Ambala ! Batra Computer Centre
Internet Training Centre in Ambala ! Batra Computer CentreInternet Training Centre in Ambala ! Batra Computer Centre
Internet Training Centre in Ambala ! Batra Computer Centre
 
Basic Computer Training Centre in Ambala ! Batra Computer Centre
Basic Computer Training Centre in Ambala ! Batra Computer CentreBasic Computer Training Centre in Ambala ! Batra Computer Centre
Basic Computer Training Centre in Ambala ! Batra Computer Centre
 
Web Designing Training in Ambala ! Batra Computer Centre
Web Designing Training in Ambala ! Batra Computer CentreWeb Designing Training in Ambala ! Batra Computer Centre
Web Designing Training in Ambala ! Batra Computer Centre
 

Dernier

Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Shubhangi Sonawane
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
An Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdfAn Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdfSanaAli374401
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxnegromaestrong
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 

Dernier (20)

Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
An Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdfAn Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdf
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 

45 Days C Language Training In Ambala! Batra Computer Centre

  • 1. Ph. No.: 4000670, 9729666670 Website:www.batracomputercentre.com Email Id: info.jatinbatra@gmail.com ISO CERTIFIED
  • 2. 45 Days C Language Training In Ambala BATRA COMPUTER CENTRE Email Id: info.jatinbatra@gmail.com Ph. No.: 4000670, 9729666670Website:www.batracomputercentre.com
  • 3. The milestones in C's development as a language are listed below: • UNIX developed c. 1969 -- DEC PDP-7 Assembly Language • BCPL -- a user friendly OS providing powerful development tools developed from BCPL. Assembler tedious long and error prone. • A new language ``B'' a second attempt. c. 1970. • A totally new language ``C'' a successor to ``B''. c. 1971 • By 1973 UNIX OS almost totally written in ``C''. Email Id: info.jatinbatra@gmail.com Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
  • 5. We briefly list some of C's characteristics that define the language. • Small size • Extensive use of function calls • Loose typing -- unlike PASCAL • Structured language • Low level (Bitwise) programming readily available • Pointer implementation - extensive use of pointers for memory, array, structures and functions. Email Id: info.jatinbatra@gmail.com Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
  • 6. C has now become a widely used professional language for various reasons. • It has high-level constructs. • It can handle low-level activities. • It produces efficient programs. • It can be compiled on a variety of computers. Email Id: info.jatinbatra@gmail.com Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
  • 9. C variable is a named location in a memory where a program can manipulate the data. This location is used to hold the value of the variable. The value of the C variable may get changed in the program. Email Id: info.jatinbatra@gmail.com Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
  • 10. ANSI C allows you to declare constants. When you declare a constant it is a bit like a variable declaration except the value cannot be changed. Email Id: info.jatinbatra@gmail.com Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
  • 11. C has a concept of 'data types' which are used to define a variable before its use. The definition of a variable will assign storage for the variable and define the type of data that will be held in the location. The value of a variable can be changed any time. Email Id: info.jatinbatra@gmail.com Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
  • 12. • C has the following basic built-in data types. • int • float • double • char Email Id: info.jatinbatra@gmail.com Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
  • 13. An operator is a symbol that tells the compiler to perform specific mathematical or logical functions. C language is rich in built-in operators and provides the following types of operators − • Arithmetic Operators • Relational Operators • Logical Operators • Bitwise Operators • Assignment Operators • Misc Operators Email Id: info.jatinbatra@gmail.com Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
  • 15. A control statement is a statement that determines whether other statements will be executed. An if statement decides whether to execute another statement, or decides which of two statements to execute. A loop decides how many times to execute another statement. C provides two styles of flow control: • Branching • Looping Email Id: info.jatinbatra@gmail.com Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
  • 16. Branching is so called because the program chooses to follow one branch or another. Branching is deciding what actions to take. • If Statement • If Else Statement • Switch Statement Email Id: info.jatinbatra@gmail.com Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
  • 17. Loops provide a way to repeat commands and control how many times they are repeated. C provides a number of looping way. looping is deciding how many times to take a certain action. • For Loop • While Loop • Do While Loop Email Id: info.jatinbatra@gmail.com Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
  • 18. A function is a group of statements that together perform a task. Every C program has at least one function, which is main(), and all the most trivial programs can define additional functions. Email Id: info.jatinbatra@gmail.com Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
  • 19. Arrays a kind of data structure that can store a fixed-size sequential collection of elements of the same type. An array is used to store a collection of data, but it is often more useful to think of an array as a collection of variables of the same type. Email Id: info.jatinbatra@gmail.com Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
  • 20. Strings are actually one-dimensional array of characters terminated by a null character '0'. Thus a null-terminated string contains the characters that comprise the string followed by a null. Email Id: info.jatinbatra@gmail.com Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
  • 21. A pointer is a variable whose value is the address of another variable, i.e., direct address of the memory location. Email Id: info.jatinbatra@gmail.com Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
  • 22. • Arrays allow to define type of variables that can hold several data items of the same kind. Similarly structure is another user defined data type available in C that allows to combine data items of different kinds. • Structures are used to represent a record. Suppose you want to keep track of your books in a library. Email Id: info.jatinbatra@gmail.com Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
  • 23. A union is a special data type available in C that allows to store different data types in the same memory location. You can define a union with many members, but only one member can contain a value at any given time. Unions provide an efficient way of using the same memory location for multiple-purpose. Email Id: info.jatinbatra@gmail.com Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
  • 24. Programming Language ‘C’ Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670 Email Id: info.jatinbatra@gmail.com
  • 25.  Introduction  Control Statements  Functions  Arrays  Strings  Pointers  Structure  Union Email Id: info.jatinbatra@gmail.com Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670
  • 28. Email Id: info.jatinbatra@gmail.com Website:www.batracomputercentre.com Ph. No.: 4000670, 9729666670 ADDRESS: SCO-15 Dayal Bagh, Ambala Cantt 133001 Near Panchmukhi Hanuman Mandir Haryana. Ph. No. : 9729666670, 4000670 E-Mail ID : info.jatinbatra@gmail.com Website : www.batracomputercentre.com