arrow_back
NOTES
🛑Join WhatsApp Group: Click Here
Introduction-to-components-of-Computer-System-
Introduction-to-Algorithm-and-Flowchart
C Programming Top 25 questions: PART 1
C PROGRAMMING TOP QUESTIONS: PART 2
C PROGRAMMING THEROY QUESTIONS
Array Answers
string programs solution
RECURSION SOLUTION
THEORY QUESTIONS FROM BASICS OF C
CONTROL STRUCTURES THEORY
STRUCTURE & UNION THEORY QUESTIONS
Array & strings
OPERATOR & DECISION BASED QUESTION SOLUTIONS
STRUCTURE PROGRAM
ITERATION BASED PROGRAMS
Functions Theory
Components of Computer System
Introduction To Programming Course
Components of Computer System | Von-Neumann Architecture
What is compiler? | Phases of Compiler
Introduction to Operating System and its Functions
What is Booting Process ? | How does Computer Start ?
How CPU understands sequence of 0's & 1's | Basics of program execution
Types of Programming Languages | Programming Language Classification | Programming Lecture 7
How does Computer work?
Concept behind formation of Number System
Decimal To Binary-Octa-Hexa
Live Lecture: Number System Conversion
Quiz - Number System
Introduction to algorithm and flowchart
Introduction to an Algorithm
Basic construct 1 - Sequence
Basic construct 2 - Decision
Basic construct 3 - Iteration
characteristics of an algorithm
Representation of Algorithm
Various operators used during representation
Rules for writing an algorithm
Step form representation
Flowchart Representation & need
Basic symbols used in the Flowchart
Advanced symbols used in the flowchart
Example 1 - Finding Sum of Two Numbers
Example 2 - Determining the remainder of a division operation
Example 3 - Find the roots of a Quadratic Equation
Example 4 - Swap two numbers using Third Variable
Example 5 - Given number is Odd or Even
Advantages & Disadvantages of Flowchart
How to build a strategy to design an Algorithm
About C language
Need of Programming Language
Classification of Programming Languages
History of C Programming
Introduction to C Programming _ Need of C Programming
Keywords, Identifiers, Constants & Variables
Character Set
Tokens in C
Identifiers in C
Keywords in C
Variables in C
Structure of a C Program
Basic Structure of a C Program
Types of Instructions in C
Data types in C
Why do we need Data types in C
Different types of Data types in C
Integer Data Type in C
Size of an Integer Data Type
Overflow and Underflow in Integer Data Type
Header Files Containing size of an Integer
Character Data Type
Size of Character Data Type
Float & Double Data Type in C
Live Lecture: C Programming Data Types
Modifiers or Specifiers
Size Modifiers/Specifiers
Sign Modifiers/Specifiers
Size & Sign Modifiers Combined
Operators in C
2's Complement
Types of Operators in C
Unary + - Operator
Overflow in Unary - Operator
Post Increment Operator & Post Decrement Operator
Post Increment & Post Decrement Example 1
Pre Increment Operator & Pre Decrement Operator
Pre Increment & Pre Decrement Example 1
Pre Increment - Decrement and Post Increment - Decrement Example 1
Pre Increment - Decrement and Post Increment - Decrement Example 2
Arithmetic Binary ADD, SUBTRACT, MULTIPLICATION
Arithmetic Division Operator
Arithmetic Modulus Operator
Ternary Operator
Relational Operator
Logical NOT Operator
Logical AND - Logical OR
Short Circuit in Logical AND & Logical OR
Bitwise AND, OR, EX-OR Operator
Bitwise Complement Operator
Bitwise Right Shift Operator
Bitwise Left Shift Operator
Assignment Operator
Comma Operator
Live Lecture: C programming
Expression & Precedence of Operator
Associativity and Precedence of Operators
Associativity and Precedence Example Set 1
Associativity and Precedence Example Set 2
Data Type Conversions
Implicit Type Conversion
Explicit Type Casting
Explicit Type Casting Example
Basic I/O - printf()
Console Input-Output
Console output function PRINTF()
How to print % and
Width and Precision in Printf()
Example on width and precision
Flags in width and Precisison
Width and Precision in Strings
Basic I/O - scanf()
Console input function SCANF()
Taking Character value through SCANF()
Advance properties of SCANF()
Dynamic width and Precision
IF statement
Introduction to Control Statements
IF statement
Program 1 based on IF statement
Program 2 based on IF statement
IF-ELSE statement
IF-ELSE statement in C
Program 1 based on IF-ELSE statement
Nested IF-ELSE statement
Dangling IF-ELSE Problem
Ladder IF-ELSE
WHILE loop
Types of Loop in C
WHILE loop in C
WHILE loop Example 1
WHILE loop Example 2
WHILE loop Example 3
FOR loop
FOR loop in C
For Loop Example 1
For Loop Example 2
For Loop Example 3
For Loop example 4
For Loop Example 5
For Loop Example 6
For Loop variation 1
For Loop variation 2
For Loop variation 3
For Loop variation 4
For Loop variation 5
DO-WHILE loop
Do-While Loop in C
Do-While Example
Nested FOR loop
Nested Fol Loop in C
Nested For Loop Example
BREAK statement in C
CONTINUE statement in C
SWITCH statement
Introduction to SWITCH statement
SWITCH syntax
SWTCH Program 1
SWITCH Tips & Traps
Rule 1
Rule 2
Rule 3
Rule 4
Rule 5
Rule 6
Rule 7
Rule 8
One dimensional Array
What is an Array and its need
Initialization of an Array
Valid Operations on an Array
Declaration of size of an Array
Overflow & underflow in an Array
Example-1
Example-2
Example-3
Example-4
Example-5
Strings in C
Static Initialization of Character Array
Dynamic Initialization of Character Array
Static Initialization of String
Printing string using %s
Printing string using %c
Printing string using puts()
String input using %s
String input using %c
String input using gets()
Character manipulation functions
isdigit(), isalnum(), isalpha()
islower(), isupper()
toupper(), tolower()
isspace(), isxdigit()
ispunct()
isprint(), iscntrl(), isgraph()
String manipulation functions
strcpy()
strlen()
strcat()
strncat()
strcmp()-Part1
strcmp()-Part2
strchr()
strstr()
Two dimensional Array
Need Of 2D Arrays _ Real Life Examples
Declaration of 2d Array
Static Declaration
Printing 2D Arrays- Static Initialization
Printing 2D Arrays - Column wise
Dynamic Initialization
Printing Diagonal Elements
Sum of upper & lower triangular elements
Trace of a matrix
Arrays of Strings
Static initialization of Arrays of Strings
Printing Arrays of Strings using %s - Part1
Printing Arrays of Strings using %s - Part2
Printing Arrays of Strings using puts()
Taking input using gets() and %s
Arrays of Strings - Example1
Arrays of Strings - Example2
Arrays of Strings - Example3
Concept of Pointers
Concept of Memory Address
What is Pointers
Size of Pointer
De-referencing Operator
De-referencing of Pointers - Example 1
De-referencing of Pointers - Example 2
De-referencing of Pointers - Example 3
Basic Example
Example 1
Example 2
Example 3
Arithmetic operations on Pointers
Null assignment
Void pointer part-1
Void pointer part-2
Pointer to pointer assignment
Integer Addition
Integer subtraction part-1
Integer subtraction part-2
Pointer Subtraction Part-1
Pointer Subtraction Part-2
Pointer Comparison Part-1
Pointer Comparison Part-2
Invalid Pointers Operations
Arrays & Pointers
Arrays & Pointers - Part1
Arrays & Pointers - Part2
Arrays & Pointers - Part3
Arrays & Pointers - Part4
Arrays & Pointers - Part5
Dynamic Memory Allocation
Difference between Dynamic & Static Memory
Dividing Memory into Blocks
Malloc Part-1
Malloc Part-2
Calloc Part-1
Calloc Part-2
realloc()
free()
Functions without parameters
Need of Functions In Programming
Using Functions without parameters
Example 1
Example 2
Example 3
Example 4
Function Prototype
Functions with return value
Return value Example-1
Return value Example-2
Return value Example-3
Return value Example-4
Functions with parameters
Using Functions with Parameters
Program-1
Program-2
Program-3
Program-4
Program-5
Recursions
Recursion MCQ's
Coding Series
Basic C programming : Day 0
Basic C programming : Day 1
Advance C Programming PART 1 : Number System
Advance C Programming PART 2 : Number System
Advance C programming PART 3 : Number System
Advance C programming PART 4 : Number System
Advance C programming PART 5 : Number System
Advance C programming PART 6 : Number System
Advance C programming PART 7 : Number System
Advance C programming PART 8 : Number System
POINTER AND STRUCTURE
RECURSION PART 1
RECURSION PART 2
RECURSION PART 3
RECURSION PART 4
RECURSION PART 5
ADVANCE C LECTURES ON MATRIX PROGRAMS
Concept of Structures
Need Of structure & Union
Declaration of a Structure
Initialization of Structure
Different ways to Declare a Structure
Different ways of Initialization
Initialization Example 1
Initialization Example 2
Initialization Example 3
Initialization Example 4
Dynamic Initialization
Equating & Comparing Structure Variables
Array of Structures
What is Array of Structures?
Static Initialization of Arrays of Structures
Dynamic initialization of Arrays of Structures
Nested Structures
Nested Structures - Part1
Nested Structures - Part2
Nested Structures - Part3
Passing Structures to a function
How to pass Structures as a parameter in functions
Passing Structure to a function - Example 1
Passing Structure to a function - Example 2
Pointer to a Structures - Example 1
Pointer to a Structures - Example 2
Pointer to a Structures - Example 3
Passing address of Structures to a function
Passing address of Structures to a function - Example
Unions
What is Union in C
Size of Union & Structure
Storing values in Union -Example 1
Storing values in Union -Example 2
Storing values in Union -Example 3
MCQ Series
C Programming MCQ Lecture 1
Strings and Pointers
2D array
CODING SERIES
DAY 1: Programs on if-else (character based)
DAY 1-PROGRAMMING ON CHARACTER USING IF ELSE
DAY 2: Programs on if-else
DAY 2-PROGRAMMING
DAY 3- Programs on Iterations
Only for unit test: C pdf
DAY 4- Programs on pattern printing
DAY 5: Programs on Pattern Printing
DAY 6: Programs on Pattern Printing
DAY 7: Programs on function
DAY 8: Programs on functions & loops
DAY 9: Programs on 1D Array by surjesh sir
All programs on switch cases
Programs on iterations: Part 1
All programs on iterations Part 2
pattern ans series
C PAPER SET 1
C PAPER SET 2
Preview - C Programming (Basic to Advance Certification Course)
Discuss (
0
)
navigate_before
Previous
Next
navigate_next