SlideShare a Scribd company logo
1 of 30
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
Content
 Introduction
 Control Statements
 Functions
 Arrays & Strings
 Pointers, Structures & Union
 File Handling
150 Programming Practice on PC
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
What is C language
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
• C is a high-level and general-
purpose programming language that
is ideal for developing firmware or
portable applications.
• Originally intended for writing system
software, C was developed at Bell Labs
by Dennis Ritchie for the Unix
Operating System (OS) in the early
1970s.
C Programming
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
An example of simple program in C:
#include<stdio.h>
void main()
{
printf(“I Love Programmingn”);
printf(“You will Love it too”);
printf(“once you know the trick”);
}
Control Statement
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.
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
Functions
• 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.
• You can divide up your code into
separate functions.
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
Arrays
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
• An array is a collection of data items,
all of the same type, accessed using a
common name.
• A one-dimensional array is like a list;
A two dimensional array is like a
table;
• The C language places no limits on the
number of dimensions in an array,
though specific implementations may.
v
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
Strings
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
• A string in C is merely an array of
characters. The length of a string is
determined by a terminating null
character: '0' .
• So, a string with the contents, say, "abc"
has four characters: 'a' , 'b' , 'c' , and the
terminating null character.
• The terminating null character has the
value zero.
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
Pointers
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
• A pointer is a variable which contains the
address in memory of another variable.
• We can have a pointer to any variable
type.
• The unary or monadic operator & gives
the ``address of a variable''.
• The indirection or dereference operator *
gives the ``contents of an object pointed
to by apointer''.
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
Structures
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
• 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.
• To define a structure, you must use
the struct statement. The struct
statement defines a new data type, with
more than one member.
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
Unions
• 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.
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
File Handling
• File Handling in C Language.
• A file represents a sequence of bytes
on the disk where a group of related
data is stored.
• File is created for permanent storage
of data. It is a ready made structure.
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
ABOUT US
We have own Centre library that has sufficient
books of great authors for our students.
Notes prepared by our teachers
are provides to every student for
their review. We also provide
particular software’s our students
on which they are pursuing their courses. Extra
classes are given to those students who need
some extra time or in case miss due to some
reason.
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE
SCO 15, Dayal Bagh,
Near Hanuman Mandir,
Ambala Cantt.
Phn No.: 9729666670,0171-4000670
Email: info.jatinbatra@gmail.com
Website: www.batracomputercentre.com
BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com
Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com

More Related Content

Similar to C Language Training 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 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
 
Computer Network Training Institute in Ambala ! Batra Computer Centre
Computer Network Training Institute in Ambala ! Batra Computer CentreComputer Network Training Institute in Ambala ! Batra Computer Centre
Computer Network Training Institute in Ambala ! Batra Computer Centrejatin batra
 
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
 
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
 
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
 
6 Week PHP Training In Ambala ! BATRA COMPUTER CENTRE
6 Week PHP Training In Ambala ! BATRA COMPUTER CENTRE6 Week PHP Training In Ambala ! BATRA COMPUTER CENTRE
6 Week PHP Training In Ambala ! BATRA COMPUTER CENTREjatin batra
 
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
 
PHP Training In Ambala ! Batra Computer Centre
PHP Training In Ambala ! Batra Computer CentrePHP Training In Ambala ! Batra Computer Centre
PHP Training In Ambala ! Batra Computer Centrejatin batra
 
Webinar: Dyn + DataStax - helping companies deliver exceptional end-user expe...
Webinar: Dyn + DataStax - helping companies deliver exceptional end-user expe...Webinar: Dyn + DataStax - helping companies deliver exceptional end-user expe...
Webinar: Dyn + DataStax - helping companies deliver exceptional end-user expe...DataStax
 
6 Month Basic Computer Training in Ambala ! Batra Computer Centre
6 Month Basic Computer Training in Ambala ! Batra Computer Centre6 Month Basic Computer Training in Ambala ! Batra Computer Centre
6 Month Basic Computer Training in Ambala ! Batra Computer Centrejatin batra
 
Learning Hub in Ambala ! Batra Computer Centre
Learning Hub in Ambala ! Batra Computer CentreLearning Hub in Ambala ! Batra Computer Centre
Learning Hub in Ambala ! Batra Computer Centrejatin batra
 
Best Practices for Migrating Legacy Data Warehouses into Amazon Redshift
Best Practices for Migrating Legacy Data Warehouses into Amazon RedshiftBest Practices for Migrating Legacy Data Warehouses into Amazon Redshift
Best Practices for Migrating Legacy Data Warehouses into Amazon RedshiftAmazon Web Services
 
HTML & CSS Training Institute in Ambala ! Batra Computer Centre
HTML & CSS Training Institute in Ambala ! Batra Computer CentreHTML & CSS Training Institute in Ambala ! Batra Computer Centre
HTML & CSS Training Institute in Ambala ! Batra Computer Centrejatin batra
 
C++ Programming Language Training in Ambala ! Batra Computer Centre
C++ Programming Language Training in Ambala ! Batra Computer CentreC++ Programming Language Training in Ambala ! Batra Computer Centre
C++ Programming Language Training in Ambala ! Batra Computer Centrejatin batra
 
Lec08-CS110 Computational Engineering
Lec08-CS110 Computational EngineeringLec08-CS110 Computational Engineering
Lec08-CS110 Computational EngineeringSri Harsha Pamu
 
MongoDB: What, why, when
MongoDB: What, why, whenMongoDB: What, why, when
MongoDB: What, why, whenEugenio Minardi
 
Jan 2015 - Cassandra101 Manchester Meetup
Jan 2015 - Cassandra101 Manchester MeetupJan 2015 - Cassandra101 Manchester Meetup
Jan 2015 - Cassandra101 Manchester MeetupChristopher Batey
 
Interview with Anatoliy Kuznetsov, the author of BitMagic C++ library
Interview with Anatoliy Kuznetsov, the author of BitMagic C++ libraryInterview with Anatoliy Kuznetsov, the author of BitMagic C++ library
Interview with Anatoliy Kuznetsov, the author of BitMagic C++ libraryPVS-Studio
 

Similar to C Language Training in Ambala ! Batra Computer Centre (20)

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
 
Computer Network Training Institute in Ambala ! Batra Computer Centre
Computer Network Training Institute in Ambala ! Batra Computer CentreComputer Network Training Institute in Ambala ! Batra Computer Centre
Computer Network Training Institute in Ambala ! Batra Computer Centre
 
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
 
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
 
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
 
6 Week PHP Training In Ambala ! BATRA COMPUTER CENTRE
6 Week PHP Training In Ambala ! BATRA COMPUTER CENTRE6 Week PHP Training In Ambala ! BATRA COMPUTER CENTRE
6 Week PHP Training In Ambala ! BATRA COMPUTER CENTRE
 
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
 
PHP Training In Ambala ! Batra Computer Centre
PHP Training In Ambala ! Batra Computer CentrePHP Training In Ambala ! Batra Computer Centre
PHP Training In Ambala ! Batra Computer Centre
 
Webinar: Dyn + DataStax - helping companies deliver exceptional end-user expe...
Webinar: Dyn + DataStax - helping companies deliver exceptional end-user expe...Webinar: Dyn + DataStax - helping companies deliver exceptional end-user expe...
Webinar: Dyn + DataStax - helping companies deliver exceptional end-user expe...
 
6 Month Basic Computer Training in Ambala ! Batra Computer Centre
6 Month Basic Computer Training in Ambala ! Batra Computer Centre6 Month Basic Computer Training in Ambala ! Batra Computer Centre
6 Month Basic Computer Training in Ambala ! Batra Computer Centre
 
Learning Hub in Ambala ! Batra Computer Centre
Learning Hub in Ambala ! Batra Computer CentreLearning Hub in Ambala ! Batra Computer Centre
Learning Hub in Ambala ! Batra Computer Centre
 
Mysql using php
Mysql using phpMysql using php
Mysql using php
 
Best Practices for Migrating Legacy Data Warehouses into Amazon Redshift
Best Practices for Migrating Legacy Data Warehouses into Amazon RedshiftBest Practices for Migrating Legacy Data Warehouses into Amazon Redshift
Best Practices for Migrating Legacy Data Warehouses into Amazon Redshift
 
HTML & CSS Training Institute in Ambala ! Batra Computer Centre
HTML & CSS Training Institute in Ambala ! Batra Computer CentreHTML & CSS Training Institute in Ambala ! Batra Computer Centre
HTML & CSS Training Institute in Ambala ! Batra Computer Centre
 
C++ Programming Language Training in Ambala ! Batra Computer Centre
C++ Programming Language Training in Ambala ! Batra Computer CentreC++ Programming Language Training in Ambala ! Batra Computer Centre
C++ Programming Language Training in Ambala ! Batra Computer Centre
 
Lec08-CS110 Computational Engineering
Lec08-CS110 Computational EngineeringLec08-CS110 Computational Engineering
Lec08-CS110 Computational Engineering
 
MongoDB: What, why, when
MongoDB: What, why, whenMongoDB: What, why, when
MongoDB: What, why, when
 
Jan 2015 - Cassandra101 Manchester Meetup
Jan 2015 - Cassandra101 Manchester MeetupJan 2015 - Cassandra101 Manchester Meetup
Jan 2015 - Cassandra101 Manchester Meetup
 
Interview with Anatoliy Kuznetsov, the author of BitMagic C++ library
Interview with Anatoliy Kuznetsov, the author of BitMagic C++ libraryInterview with Anatoliy Kuznetsov, the author of BitMagic C++ library
Interview with Anatoliy Kuznetsov, the author of BitMagic C++ library
 

More from 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
 

More from 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
 

Recently uploaded

Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...anjaliyadav012327
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfchloefrazer622
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpinRaunakKeshri1
 
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
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Disha Kariya
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajanpragatimahajan3
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 

Recently uploaded (20)

Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdf
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
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
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajan
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 

C Language Training in Ambala ! Batra Computer Centre

  • 1. BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 2. BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 3. Content  Introduction  Control Statements  Functions  Arrays & Strings  Pointers, Structures & Union  File Handling 150 Programming Practice on PC BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 4. What is C language BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com • C is a high-level and general- purpose programming language that is ideal for developing firmware or portable applications. • Originally intended for writing system software, C was developed at Bell Labs by Dennis Ritchie for the Unix Operating System (OS) in the early 1970s.
  • 5. C Programming BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com An example of simple program in C: #include<stdio.h> void main() { printf(“I Love Programmingn”); printf(“You will Love it too”); printf(“once you know the trick”); }
  • 6. Control Statement 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. BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 7. BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 8. Functions • 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. • You can divide up your code into separate functions. BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 9. BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 10. BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 11. BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 12. Arrays BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com • An array is a collection of data items, all of the same type, accessed using a common name. • A one-dimensional array is like a list; A two dimensional array is like a table; • The C language places no limits on the number of dimensions in an array, though specific implementations may.
  • 13. v BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 14. Strings BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com • A string in C is merely an array of characters. The length of a string is determined by a terminating null character: '0' . • So, a string with the contents, say, "abc" has four characters: 'a' , 'b' , 'c' , and the terminating null character. • The terminating null character has the value zero.
  • 15. BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 16. Pointers BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com • A pointer is a variable which contains the address in memory of another variable. • We can have a pointer to any variable type. • The unary or monadic operator & gives the ``address of a variable''. • The indirection or dereference operator * gives the ``contents of an object pointed to by apointer''.
  • 17. BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 18. Structures BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com • 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. • To define a structure, you must use the struct statement. The struct statement defines a new data type, with more than one member.
  • 19. BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 20. Unions • 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. BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 21. BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 22. BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 23. File Handling • File Handling in C Language. • A file represents a sequence of bytes on the disk where a group of related data is stored. • File is created for permanent storage of data. It is a ready made structure. BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 24. BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 25. BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 26. BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 27. BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com ABOUT US We have own Centre library that has sufficient books of great authors for our students. Notes prepared by our teachers are provides to every student for their review. We also provide particular software’s our students on which they are pursuing their courses. Extra classes are given to those students who need some extra time or in case miss due to some reason.
  • 28. BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com
  • 29. BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com BATRA COMPUTER CENTRE SCO 15, Dayal Bagh, Near Hanuman Mandir, Ambala Cantt. Phn No.: 9729666670,0171-4000670 Email: info.jatinbatra@gmail.com Website: www.batracomputercentre.com
  • 30. BATRA COMPUTER CENTRE Email: info.jatinbatra@gmail.com Ph. No. :9729666670,4000670 Website: www.batracomputercentre.com