Skip to content

Learn CS with Eliza

  • Home
  • Prog.
    • C
      • Overview
        • Introduction
        • Features
        • Importance
        • Applications
        • Basic Structure
        • Sample Program
        • Compile & Execute
        • Character Set
        • Variables
        • Data Types
        • Constants
        • Keyword & Identifier
        • Tokens
        • Escape Sequence
        • Assignment Statement
        • Type Conversion
      • Operators & Expressions
        • Operators
        • Unary Operator
        • Arithmetic Expression
        • Precedence & Associativity
      • I/O Operations
      • Decision Making & Branching
      • Looping Statement
      • Arrays & Functions
        • Arrays
        • Functions
          • Functions in C
          • User Defined Func
          • Math Functions
          • Storage Classes
      • Structures & Unions
        • Structures
        • Unions
      • Preprocessor & macros
        • Preprocessor
        • Macros
      • Pointers & File Management
        • Pointers
        • File Management
        • Memory Allocation
        • Command Line Arguments
      • Practical Programs
        • Practical Set-1
        • Practical Set-2
      • Important Questions
        • Set-1
        • Set-2
      • Question Answer
        • Set-1
        • Set-2
        • Set-3
      • MCQ
      • Solved Paper
        • Set-1
        • Set-2
        • Set-3
    • C++
      • Practical Programs
    • JAVA
      • OOP Concept
      • OOP in Java
      • Interfaces
      • Packages
      • Exception Handling
      • Multithreading
      • MCQ
      • Important Questions
      • Practical
        • Set-1
  • DSA
    • DS Tutorial
    • Linear DS
    • Non-Linear DS
    • Algorithm Concept
    • Important Questions
    • Solved Paper
      • Set-1
      • Set-2
    • MCQ
  • DBMS
    • DBMS Concepts
    • RDBMS
    • SQL
    • Data Modeling
    • Normalization
    • Functional Dependency
    • Data Abstraction
    • Data Independence
    • Database Schema
    • E-R Diagram
    • Imp Questions-RDBMS
  • SE
    • Introduction
      • Overview
      • Software Processes
      • SDLC
      • Phases of SDLC
      • Waterfall
        • Classical Waterfall
        • Iterative Waterfall
      • Prototype
      • Spiral
      • Iterative
    • Project Management
      • Project Planning
      • Software Cost estimation
      • COCOMO Models
    • Software Requirement
      • Feasibility Studies
      • Functional/Non Functional Requirement
      • SRS Document
    • Design Concepts
      • Design Fundamental
      • Software Design
      • Function/Object Oriented Design
      • Cohesion/Coupling
      • DFD
      • UML
    • Coding & Testing
      • Coding & Testing Notes
      • Coding Style
      • Structured Programming
      • Verification & Validation
      • Error, Fault & Failure
      • Debugging
      • Testing Types
      • Level of Testing
      • White Box Testing
      • Black Box Testing
    • Software Maintenance
    • Solved Paper
      • Set-1
      • Set-2
    • Imp Questions
    • MCQ
  • WebTch
    • Internet & Web
      • Introduction
      • Complete Notes
      • Question Answers
    • HTML
      • Introduction
      • Complete Notes
      • Imp Questions
    • CSS
    • Java Script
      • Notes
      • Programs
    • PHP
  • Networks
    • Important Questions
    • Solved paper
      • Set-1
      • Set-2
  • NSC
    • Overview NSC
    • Cryptography
    • Symmetric Key Ciphers
      • Symmetric Key Ciphers (Classical)
      • Block Cipher
      • Block & Stream Cipher
      • Feistel Cipher
      • Confusion & Diffusion
    • Symmetric Key Algo
      • DES
      • AES
    • Asymmetric Key Algo
      • RSA
    • SHA
      • SHA-1
    • MD5
    • Digital Signature
    • Hash Function
    • Questions
    • Important Questions
    • Questions & Ans
    • MCQ
  • DS
    • DS Introduction
    • Clock Synchronization
    • Distributed ME
    • Election Algorithm
    • Termination Detection
    • Tran & Con Control
    • DS Notes
    • MCQ
    • DS Questions
    • Solved Paper
  • MobileTch
    • Complete Notes
    • Question & Ans
  • QP
    • C Programming
      • C-2021
      • C-2022
      • C-2023
      • C 2023
    • Data Structure
      • DS-2022
      • DS-2023(ASTU)
      • DS-2023(DU)
    • Digital Logic
      • DL-2023
    • OOP in Java
      • JAVA-2021
      • JAVA-2023
      • JAVA-2024
    • Computer Architecture And Organization
      • CAO-2021
      • CAO-2023
      • CAO 2023
      • CAO-2024
    • DBMS
      • DBMS-2021
      • DBMS-2023
    • EVS
      • EVS-2023
      • EVS-2024
    • Software Engineering
      • SE-2022
      • SE-2023
      • SE-2024
    • Computer Network
      • CN-2022
      • CN-2023
      • CN-2024
    • Web Technology
      • WT-2022
      • WT-2023
      • WT-2024
    • Theory of Computer Science
      • TCS-2022
      • TCS-2023
      • TCS-2024
    • Operating System
      • OS-2022
      • OS-2023
    • Network Security & Cryptography
      • NSC-2022
      • NSC-2023
    • System Software
      • SS-2022
      • SS-2023
      • SS-2024
    • Design & Analysis of Algorithms
      • DAA-2022
      • DAA-2023
      • DAA-2024
    • Distributed System
      • DS-2023
      • DS-2024
    • Artificial Intelligence
      • AI-2023
      • AI-2024
  • Syllabus
    • BCA
      • 1st Sem
      • 2nd Sem
      • 3rd Sem
      • 4th Sem
      • 5th Sem
      • 6th Sem

Storage Classes in C

February 24, 2024March 15, 2022 by Eliza Begum

Storage classes are used to describe the features of a variable. Every variables in C has two attributes, type and …

Read more

Functions in C | C Functions

January 23, 2025March 14, 2022 by Eliza Begum

A function is a block of codes or a group of statements that together perform a specific task. Every C …

Read more

C Arrays| Arrays in C |C Arrays (With Examples)

July 6, 2025March 13, 2022 by Eliza Begum

An array is a collection of similar data elements stored at contiguous memory locations. This data type is useful when …

Read more

What is Loop in C? |Looping statements in C|C – Loops | Loops in C

July 6, 2025March 12, 2022 by Eliza Begum

Looping is a technique in which a set of statements are repeatedly executed until the condition specified becomes false. So …

Read more

Decision making and Branching statement in C

May 31, 2024March 12, 2022 by Eliza Begum

Generally C program execute its statements sequentially. But some situations may arise where we may have to change the order …

Read more

Managing Input and Output Operations in C

February 24, 2024March 12, 2022 by Eliza Begum

All input and output operations are carried out through functions such as printf() and scanf(). These functions are collectively known …

Read more

Precedence and Associativity of operators in C

February 24, 2024March 10, 2022 by Eliza Begum

Precedence of Operators: The precedence of operator determines which operator is evaluated first if there is more than one operator …

Read more

Operators in C | C Programming Operators |C-Operators

February 24, 2024March 10, 2022 by Eliza Begum

  An operator can be defined as a symbol that specifies an operation to be performed. C language supports a …

Read more

Tokens in C | C Tokens

February 24, 2024March 8, 2022 by Eliza Begum

  Each and every smallest individual unit in a C program is known as tokens. Tokens are the basic building …

Read more

Data Types in C | C Data Types

November 20, 2024March 8, 2022 by Eliza Begum

  As the name suggests, a data type refers to the type of data being used. The data type defines …

Read more

Older posts
Newer posts
← Previous Page1 … Page28 Page29 Page30 Next →
  • About Us
  • Contact Us
  • Disclaimer
  • Privacy Policy
  • Terms and Conditions

Recent Posts

  • COMMIT, ROLLBACK and SAVEPOINT in SQL|TCL commands-COMMIT, ROLLBACK and SAVEPOINT
  • Natural Language Processing (NLP)| What is Natural Language Processing (NLP)
  • Machine Learning Tutorial|What is Machine Learning?
  • Expert Systems in Artificial Intelligence| Artificial Intelligence – Expert Systems | Expert Systems in AI | What are Expert Systems in AI?
  • Knowledge Representation in Artificial Intelligence (AI)| What is Knowledge Representation in AI?
  • 1st Sem
  • 2nd Sem
  • 3rd Sem
  • 4th Sem
  • 5th Sem
  • 6th Sem
  • AES
  • AI-2023
  • AI-2024
  • Algorithm Concept
  • Arithmetic Expression
  • Arrays
  • Assignment Statement
  • Basic Structure
  • Black Box
  • Block & Stream Cipher
  • Block Cipher
  • C 2023
  • C Programming
  • C-2021
  • C-2022
  • C-2023
  • CAO 2023
  • CAO-2021
  • CAO-2023
  • CAO-2024
  • Character Set
  • Classical
  • Clock Synchronization
  • CN Solved Paper SEt-1
  • CN solved Paper Set-2
  • CN-2022
  • CN-2023
  • COCOMO Models
  • Coding & Testing Notes
  • Coding Style
  • Cohesion/Coupling
  • Command Line Arguments
  • Compile & Execute
  • Complete Notes – Mobile Tech
  • Confusion & Diffusion
  • Constants
  • Cryptography
  • CSS
  • DAA-2022
  • DAA-2023
  • DAA-2024
  • Data Abstraction
  • Data Independence
  • Data Modeling
  • Data Structure
  • Data Types
  • Database Schema
  • DBMS Concepts
  • DBMS-2021
  • DBMS-2023
  • Debugging
  • Decision Making & Branching
  • DES
  • Design Fundamental
  • DFD
  • Digital Signature
  • Distributed ME
  • DL-2023
  • DS Introduction
  • DS MCQ
  • DS Notes
  • DS Questions
  • DS Tutorial
  • DS-2022
  • DS-2023
  • DS-2023(ASTU)
  • DS-2023(DU)
  • DS-2024
  • DSA
  • E-R Diagram
  • Election Algorithm
  • Error, Fault & Failure
  • Escape Sequence
  • EVS-2023
  • EVS-2024
  • Exception Handling
  • Feasibility Studies
  • Features
  • Feistel Cipher
  • File Management
  • Function/Object Oriented Design
  • Functional Dependency
  • Functional/Non Functional Requirement
  • Functions in C
  • Hash Function
  • I/O Operations
  • Imp Questions SE
  • Imp Questions-RDBMS
  • Importance
  • Important Question-NSC
  • Important Questions
  • Important Questions – HTML&CSS
  • Important Questions- DS
  • Interfaces
  • Intro HTML
  • Intro Internet
  • Introduction
  • Iterative
  • Iterative
  • Java Imp Questions
  • JAVA-2021
  • JAVA-2023
  • JS Notes
  • JS programs
  • Keyword & Identifier
  • Level of Testing
  • Linear DS
  • Looping Statement
  • Macros
  • Math Functions
  • MCQ – JAVA
  • MCQ-C
  • MCQ-DSA
  • MCQ-NSC
  • MCQ-SE
  • MD5
  • Memory Allocation
  • Multithreading
  • Network Security & Cryptography
  • Non-Linear DS
  • Normalization
  • Notes -HTML&CSS
  • Notes Internet & Web
  • NSC Questions
  • NSC-2022
  • NSC-2023
  • OOP Concept
  • OOP in JAVA
  • OOP in Java
  • Operating System
  • Operators
  • OS-2022
  • OS-2023
  • Overview
  • Overview NSC
  • Packages
  • Phases of SDLC
  • PHP
  • Pointers
  • Practical Programs
  • Practical Set-1
  • Practical Set-1 Java
  • Practical Set-2
  • Precedence & Associativity
  • Preprocessor
  • Project Management
  • Project Planning
  • Prototype
  • Que-Ans Mobile Tech
  • Ques-Ans Internet Tech
  • Questions & Ans NSC
  • RDBMS
  • RSA
  • Sample Program
  • SDLC
  • SE-2022
  • SE-2023
  • SE-2024
  • Set-1
  • Set-1 QA
  • Set-2
  • Set-2
  • Set-3
  • SHA
  • SHA-1
  • Software Cost estimation
  • Software Design
  • Software Maintenance
  • Software Processes
  • Software Requirement
  • Solved Paper Set 1-SE
  • Solved Paper Set 2-SE
  • Solved Paper- DS
  • Solved Paper-C Set-1
  • Solved Paper-C Set-2
  • Solved Paper-C Set-3
  • Solved Paper-DSA (Set-1)
  • Solved Paper-DSA(Set-2)
  • Spiral
  • SQL
  • SRS Document
  • SS-2022
  • SS-2023
  • SS-2024
  • Storage Classes
  • Structured Programming
  • Structures
  • Symmetric Key Ciphers (Classical)
  • TCS-2022
  • TCS-2023
  • TCS-2024
  • Termination detection
  • Testing
  • Tokens
  • Tran & Con Control
  • Type Conversion
  • UML
  • Unary Operator
  • Uncategorized
  • Unions
  • User Defined Func
  • Variables
  • Verification & Validation
  • White Box
  • WT-2022
  • WT-2023
  • WT-2024
  1. Java Burn on Python Arrays | Arrays in PythonJanuary 20, 2025

    Great work! This is the type of info that should be shared around the net. Shame on the search engines…

  2. Java Burn on Design and Analysis of Algorithms Question Paper 2023 | Question Paper Design and Analysis of Algorithms BCAJanuary 20, 2025

    Very interesting details you have noted, regards for posting. "Opportunities are seldom labeled." by John H. Shield.

  3. semutwin on Design and Analysis of Algorithms Question Paper 2023 | Question Paper Design and Analysis of Algorithms BCAJanuary 20, 2025

    Some truly interesting information, well written and generally user genial.

  4. Sight Care on Sample C Program | How to write a simple C Program?January 20, 2025

    This really answered my problem, thank you!

  5. sukre sugar where to buy usa on Python Arrays | Arrays in PythonJanuary 20, 2025

    Lovely just what I was looking for.Thanks to the author for taking his time on this one.

  • About Us
  • Contact Us
  • Privacy Policy
  • Terms and Conditions
  • Disclaimer
© 2025 Computer Science Knowledge • Built with GeneratePress