Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // main.cpp
- // A simple hello world program for C
- #include <iostream>
- int main([[maybe_unused]] int argc, [[maybe_unused]] char** argv)
- {
- using std::cout, std::endl;
- cout << "Hello, World!" << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement