Keywords in C++

Below is the list of keywords in C++:

asm, auto, bool, break, case, catch, char, class, const, const_cast, continue, default, delete, do, double, dynamic_cast, else, enum, explicit, export, extern, false, float, for, friend, goto, if, inline, int, long, mutable, namespace, new, operator, private, protected, public, register, reinterpret_cast, return, short, signed, sizeof, static, static_cast, struct, switch, template, this, throw, true, try, typedef, typeid, typename, union, unsigned, using, virtual, void, volatile, wchar_t, while

Example:

C++
#include <iostream>

using namespace std;

int main()
{

    // int, double, char, bool keywords
    int age = 30;
    double pi = 3.14159;
    char initial = 'B';
    bool isTrue = true;

    // if, else keywords
    if (age > 25) {
        cout << "You are eligible." << endl;
    }
    else {
        cout << "Not yet eligible." << endl;
    }

      // for keyword
    for (int i = 0; i < 5; i++) {
        cout << "Iteration " << i << endl;
    }

    // while keyword
    int count = 0;
    while (count < 3) {
        cout << "Count: " << count << endl;
        count++;
    }

    // Switch, case keywords
    switch (initial) {
    case 'A':
        cout << "Initial is A" << endl;
        break;
    case 'B':
        cout << "Initial is B" << endl;
        break;
    default:
        cout << "Initial is something else" << endl;
    }


    return 0;
}

Output
You are eligible.
Iteration 0
Iteration 1
Iteration 2
Iteration 3
Iteration 4
Count: 0
Count: 1
Count: 2
Initial is B

What is Keyword in Programming?

Keywords are predefined or reserved words that have special meaning to the compiler. In this article, we will discuss about keywords in programming, its importance, and usage in different languages.

Similar Reads

What is a Keyword?

A keyword is a reserved word in a programming language that has a predefined meaning and cannot be used for any other purpose, such as naming variables or functions. Keywords form the basic building blocks of a program’s syntax....

Importance of Keywords in Programming:

Keywords are essential because they define the structure and control flow of the program. They are part of the syntax that allows programmers to write understandable and maintainable code. Without keywords, programming languages would lack the necessary commands and structure to perform operations and control the logic....

Characteristics of Keywords:

Reserved: Cannot be used as identifiers (variable names, function names, etc.).Case-sensitive: In languages like C, C++, Java, and Python, keywords are usually case-sensitive (e.g., if is different from IF).Fixed meaning: Keywords have a fixed purpose and meaning defined by the language specification....

Types of Keywords:

Control Keywords: Used for control flow, such as if, else, while, for.Data Type Keywords: Define data types, such as int, float, char.Storage Class Keywords: Specify the storage duration and linkage, such as static, extern.Access Modifiers: Define access levels for classes, variables, methods (e.g., public, private, protected in Java and C++).Others: Keywords that don’t fall into the above categories but are essential for specific functionalities, like return, void, new....

Keywords in C:

Below is the list of keywords in C:...

Keywords in C++:

Below is the list of keywords in C++:...

Keywords in Java:

Below is the list of keywords in Java:...

Keywords in Python:

Below is the list of keywords in Python:...

Keywords in C#:

Below is the list of keywords in C#:...

Keywords in JavaScript:

Below is the list of keywords in JavaScript:...

Contact Us