C/C++ program to print Hello World without using main() and semicolon
The task is to write a program to print Hello World without using main() and semicolon. As we already know, how to print Hello World without the use of a semicolon. Now, for writing without main() method, we will need a Macro. C/C++ Code // C program to print Hello World // without using main() and