<<< Every name has a type | Index | C++ Fundamental Types >>> |
// Example: int main() { double x; // declaration of x int y = 7; // initialization of y x = y + 2; // addition and assignment return 0; }
<<< Every name has a type | Index | C++ Fundamental Types >>> |