Programming in C/Basics concept



Course Description:


C is one of the most widely used general purpose and imperative programming language. It has been standardized by ANSI and ISO and has been the root source of many other programming languages such as C++, C#, D, Java and JavaScript, PHP, Verilog etc.


Introduction to Programming languages


  • Concept of programming language
  • Types of programming language
  • Compiler and Interpreter

Introduction to C


  • History and origin of C
  • Creating a simple C program
  • Platform dependency of C

Data Types and Operators



Decision Making


  • if else
  • else if
  • nested if else
  • switch statement

Loop Controls


  • for loop
  • while loop
  • do-while loop
  • nested loop
  • break keyword
  • continue keyword

Functions


  • Understanding function
  • Types of functions
  • Recursion and recursive function
  • Creating own Header files

Primary Data Types


  • Categorization of primitive data types
  • Type casting
  • Storage classes

Array


  • What is Array
  • Operations on Array
  • Types of Array
  • One-Dimensional Array
  • Multi-Dimensional Array
  • Array with function

String


  • Declaring and initializing a string
  • Reading and Writing string
  • String Manipulations
  • String Manipulations using predefine functions
  • Array of strings

Pointer


  • Understanding pointer
  • Declaring and Initializing pointer
  • Accessing a variable through pointer
  • Array of pointers
  • Pointer chaining
  • Call by value
  • Call by reference
  • Accessing array using pointer
  • Accessing string using pointer
  • Accessing structure using pointer

User-defined data-types


  • Declaring and Operations on structure
  • Nested structures
  • Functions with structure
  • Pointer with structure
  • Understanding union
  • Understanding enumeration

Input/Output & File Handling


  • Understanding Console I/O
  • Understanding File I/O
  • Opening/closing a file
  • Operations on a file
  • Error Handling during File I/O

Preprocessor


  • What is pre-processor
  • Macro substitution
  • File Inclusion
  • Conditional compilation
  • Miscellaneous directives

Dynamic Memory Allocation(DMA)


  • Introduction to dynamic memory allocation
  • Allocating memory at run-time
  • Modifying the allocated memory    
  • De-allocating memory

"

C programminglanguage is mother of all programming languages "

No comments:

Post a Comment

C code for if & if else statement with diagram

If statement in C programming with example BY er RAVI BHADANA  |  FILED UNDER:  C-PROGRAMMING When we need to execute a block of statements ...