C Language

C Language

I. INTRODUCTION

  • History of C
  • Constants, Variables, Data types and Keywords
  • Instructions
  • Type Conversion
  • Structure of a Program

II. DECISION CONTROL STRUCTURE

  • If
  • If- Else
  • Nested – If – Else
  • Logical Operators
  • Conditional Operators

III. LOOP CONTROL STRUCTURE

  • While loop
  • Do While
  • For while

IV. JUMPING STATEMENTS

  • Break
  • Continue
  • Go to

V. CASE CONTROL STRUCTURE

  • Switch

VI. FUNCTIONS

  • Types of functions
  • Passing Values between functions
  • Function declaration prototype
  • Call by value, call by reference
  • Pointers
  • Storage Classes

VII. ARRAYS

  • Array declaration, initialization
  • Passing array elements to a function
  • Single dimensional array
  • 2 dimensional array
  • Multidimensional array
  • Pointers and array

VIII. STRUCTURES

  • Declaration
  • Accessing Structures elements
  • Array of structures
  • Nested structures
  • Passing of structure variable to a function

IX. FILES

  • Formatted text
  • Unformatted text
  • Files read and write

X. Graphics