Overview of Core Python Concepts

Overview of Core Python Concepts

Overview of 108 Core High-Frequency Python Vocabulary 1. Common Built-in Functions print: Implements printing or output functionality len: Used to get length type: Determines data type input: Implements input functionality range: Generates a range of numbers str: Handles string types int: Handles integer types float: Handles floating-point types list: Operates on list types dict: Operates … Read more

Fundamentals of C Language: From Keywords to Variables, The First Step in Programming

1. Keywords in C Language In C language, keywords are part of the programming language that have special meanings, used to inform the compiler about the structure and control flow of the program. Keywords are predefined words that cannot be used to name variables, functions, or any other identifiers. Common keywords include: <span>int:</span> Defines a … Read more

Detailed Explanation of C++ Keywords

Basic Concept of Keywords Keywords are reserved words in the C++ language that have special meanings. They define the syntax structure and basic operations of the language. Keywords cannot be used as identifier names (such as variable names, function names, etc.). Key Features: Reserved: Keywords are specific to C++ and cannot be used for other … Read more

Overview of C++ Keywords

Keywords cannot be used as variable names, function names, class names, or other user-defined identifiers.. These keywords are the fundamental building blocks that the C++ compiler uses to understand the structure and semantics of a program, such as declaring variables, defining functions, controlling flow, and object-oriented programming. 📘 Overview of C++ Keywords (as of C++20 … Read more

Daily C++ Challenge – Day 850

Daily C++ Challenge - Day 850

Today marks the 850th day of learning programming with the cool drizzle! Hello, everyone! This is the GESP Level 1 Exam for June 2025 questions. Day 850 GESP Level 1 Exam for June 2025 True or False Questions Question 9: In C++ code, a variable cannot be named ‘false’ because ‘false’ is a keyword in … Read more

The Evolution of C++ Keywords: From 1998 to 2023

The Evolution of C++ Keywords: From 1998 to 2023

Hello everyone! Today, we are going to discuss the historical changes of “keywords” in the C++ programming language. Don’t worry, if you’re a programming novice, I will explain everything in the simplest terms without bombarding you with a bunch of code. First, what is C++? C++ is a super popular programming language used for writing … Read more

C Language Learning Notes: 1. Hello World

C Language Learning Notes: 1. Hello World

The course referenced in these notes is Frank’s C language course reset in 2024: C Language Master: Coding Crazy, Criticizing Loudly (Part 1) Bilibili[1] C Language Master: Coding Crazy, Criticizing Loudly (Part 2) Bilibili[2] Although I have previously taken C language courses and have some understanding of C, I sometimes feel that I have a … Read more

Learning C++ from Scratch Day 2 (C++ Identifiers, Keywords, and Operators) – The Most Comprehensive and Easy-to-Understand Guide

Learning C++ from Scratch Day 2 (C++ Identifiers, Keywords, and Operators) - The Most Comprehensive and Easy-to-Understand Guide

Identifiers In C++, an identifier is a name used to uniquely identify program elements such as variables, functions, classes, objects, and namespaces, making them easier to reference and manipulate in the code. Rules for naming identifiers (must be followed): 1. Composition characters: Identifiers can only consist of letters (A-Z, a-z), digits (0-9), and underscores (_), … Read more

Comprehensive List of C Language Keywords

Comprehensive List of C Language Keywords

The keywords of the C language are predefined identifiers with special meanings by the compiler, and cannot be used as custom identifiers such as variable names or function names. 1. Data Type Keywords Used to declare the type of variables, functions, or other data structures. Keyword Description <span>void</span> Indicates no type (used for function return … Read more