uint16_t in c++

#include <iostream>

int main() {
    // Declare a variable of type uint16_t
    uint16_t myVariable;

    // Initialize the variable with a value
    myVariable = 42;

    // Print the value of the variable
    std::cout << "Value of myVariable: " << myVariable << std::endl;

    // Declare and initialize another uint16_t variable
    uint16_t anotherVariable = 123;

    // Print the value of the second variable
    std::cout << "Value of anotherVariable: " << anotherVariable << std::endl;

    return 0;
}