Example C++int main(){ std::cout << "Hello World"; return 0;} Run this code Output: Hello World #include <iostream> int main() { std::cout << "Hello World"; return 0; } Run Exit Powered by Coliru online compiler Output: ...
Post a Comment