In this program, we will only display a message i.e. HELLO WORLD!
C++:
#include<iostream.h> #include< conio.h> void main() { clrscr(); cout<<"\n\n\n\n\n\n\n\n\t\t\ ****************** HELLO WORLD! ********************"; getch(); }
Output
****************** HELLO WORLD! ********************
Python;
print("'\n\n\n\n\t\t\t********************** HELLO WORLD! ***********************")
Output
********************** HELLO WORLD! ***********************