class MyClass { // The class
public: // Access specifier
MyClass() { // Constructor
cout << "Hello World!";
}
};
int main() {
MyClass myObj; // Create an object of MyClass (this will call the constructor)
return 0;
}
Code Example |
---|
Cpp :: c++ printf char as hex |
Cpp :: string vector c++ |
Cpp :: split string on character vector C++ |
Cpp :: string reverse stl |
Cpp :: c++ random number 0 to 1 |
Cpp :: matplotlib hide numbers on axis |
Cpp :: c++ length of char array |
Cpp :: number of words in c++ files |
Cpp :: c++ 2d vector assign value |
Cpp :: max element in array c++ stl |
Cpp :: return array from function c++ |
Cpp :: memset in c++ |
Cpp :: include cpp |
Cpp :: overload stream extract cpp |
Cpp :: how to easily trim a str in c++ |
Cpp :: change int to string c++ |
Cpp :: array max and minimum element c++ |
Cpp :: reading file c++ |
Cpp :: how to split a string in c++ |
Cpp :: c++ string to char array |
Cpp :: break in c++ |
Cpp :: int main() { |
Cpp :: 58. Length of Last Word leetcode solution in c++ |
Cpp :: c++ average |
Cpp :: how to get the time in c++ as string |
Cpp :: array to string c++ |
Cpp :: c++ print out workds |
Cpp :: c++ string conversion operator |
Cpp :: sum of a matrix c++ |
Cpp :: c++ doubly linked list |