Posts

01-C LANGUAGE SYLLABUS

                         01.INTRODUCTION 02.LOOPS 03.ARRAYS(OR)SUB SCRIPTS,C-STRINGS AND STRING FUNCTIONS 04. FUNCTIONS OR SUB PROGRAMS 05.POINTERS 06.STRUCTURES 07.FILES INTERVIEW BASED THEORY QUESTIONS FOR C

02-INTRODUCTION

INTRODUCTION PART 1 COVERED TOPICS: CLICK HERE       What is C Programming?       Where is C used? Key Applications       Why learn C?       How C works?       How to Write Commnets in C programming? INTRODUCTION PART 2 COVERED TOPICS: CLICK HERE         C Tokens,Keywords.Identifiers         C Variables ,Datatypes,Constants        

03-LOOPS

LOOPS PART 1 COVERED TOPICS : CLICK HERE INTRODUCTION  LOOPS PART 2 COVERED TOPICS: CLICK HERE WHILE LOOP  FOR LOOP LOOPS PART 3 COVERED TOPICS: CLICK HERE DO WHILE NESTED LOOPS LOOPS PART 4 COVERED TOPICS: CLICK HERE BREAK STATEMENT CONTINUE STATEMENT GOTO STATEMENT LOOPS PART 5 COVERED TOPICS : CLICK HERE INFINITE LOOPS

04-ARRAYS

ARRAYS PART 1 COVERED TOPICS : CLICK HERE Definition Why do we need arrays Types of arrays Accessing elements in 1D array Processing 1 D array Intializing 1 D array Advantages of arrays Disadvantages of arrays Drawbacks of arrays Applications ARRAYS PART 2 COVERED TOPICS : CLICK HERE Two dimensional array simple example Intialization of 2 D array How to store user input data into 2 D array Relation between pointers &arrays examples Array declaration in c ARRAYS PART 3 COVERED TOPICS : CLICK HERE Multidimensional array Intializing and accessing array elements C-string and string functions with examples String declaration String i/o in c programming C-string functions

05-FUNCTIONS

FUNCTIONS PART 1 COVERED TOPICS : CLICK HERE Types of functions Why do we need functions in c Sytax of function How to call a function in c Few points to note regarding functions FUNCTIONS PART 2 COVERED TOPICS : CLICKHERE Methods Function call by value method with examples Function call by referance with example FUNCTIONS PART 3 COVERED TOPICS : CLICK HERE  Clear view about functions

06-POINTERS

Pointers part 1 covered Topics : CLICK HERE POINTERS IN C LANGUAGE A simple example to understand how to access the address of a variable without pointers A Simple Example of Pointers in C Pointers part 2 covered Topics : CLICKHERE C Pointers – Operators that are used with Pointers “Address of”(&) Operator “Value at Address”(*) Operator How to declare a pointer? Example of Pointer demonstrating the use of & and * Pointers part 3 covered Topics  : CLICKHERE C – Pointer to Pointer (Double Pointer) with example How to declare a Pointer to Pointer (Double Pointer) in C? Example of double Pointer Pointers part 4 covered Topics : CLICKHERE Passing pointer to a function in C with example Swapping two numbers using Pointers Pointers part 5 covered Topics : CLICKHERE C – Function Pointer with examples How to declare a function pointer? Pointers part 6 covered Topics : CLICKHERE Pointer and Array in C programming with example A simple example to print the address of array elements A

07-STRUCTURES

Structures  Part 1 Covered  Topics : CLICKHERE How to create a structure in C Programming How to access data members of a structure using a struct variable? How to assign values to structure members Structures  Part 2 Covered  Topics : CLICK HERE Nested Structure in C: Struct inside another struct Example of Nested Structure in C Programming Use of typedef in Structure Designated initializers to set values of Structure members