img
img

Course Details!

Description

This course is designed to provide complete knowledge of C language .
it is designed for students who are interested in developing programming for any operating system, Language Compilers, Assemblers, Editors, Print Spoolers, Network Drivers, Modern Programs, Databases, Language Interpreters, Utilities, Students will be able to develop logics which will help them to create programs, applications in C Also, by learning the basic programming constructs they can easily switch over to any other language in future.

What Will I Learn?

  • appreciate the importance of C as a programming language.
  • understand the structure of a C program.
  • learn the preferred practices in writing a program.
  • understand the concepts of compilation, linking and loading of a C program.
  • Learn how to use any environment in development.
  • Dealing With C Syntax & Constructs.
  • Describe & Use OOP Concepts.
  • will be able to develop applications & projects.
  • learn the desirable characteristics of a good program.

Certificates

  • Certificate Of Attendance From IT-Gate Academy

Introduction to programming, Fundamentals of C language.

  • Overview Of C Programming Language.

C Basic Syntax

  • will give details about all the basic syntax about C programming language including tokens, keywords, identifiers, etc.

Comments

  • Comments are like helping text in your C program and they are ignored by the compiler.

C Variables

  • A variable is nothing but a name given to a storage area that our programs can manipulate.

C Data Types

  • in the C programming language, data types refer to an extensive system used for declaring variables or functions of different types, The types in C can be classified a Basic Types, Enumerated types, The type void, Derived types.

C Constants and Literals

  • The constants refer to fixed values that the program may not alter during its execution, these fixed values are also called literals.

C Operators

  • An operator is a symbol that tells the compiler to perform specific mathematical or logical manipulations.
  • 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.
  • this tutorial will explain the arithmetic, relational, logical, bitwise, assignment and other operators one by one.

If statement & Switch

  • An if statement & Switch consists of a Boolean expression followed by one or more statements.

Loops

  • there may be a situation, when you need to execute a block of code several number of times.

Arrays

  • An array is used to store a collection of data.

Strings

  • actually, a one-dimensional array of characters which is terminated by a null character '\0'.

Functions

  • is a group of statements that together perform a task.

Structures

  • arrays allow you to define type of variables that can hold several data items of the same kind but structure is another user defined data type available in C programming, which allows you to combine data items of different kinds.

File I/O

  • we will see how C programmers can create, open, close text or binary files for their data storage.

Comments