Computer Science, asked by sumit5869, 10 months ago

Write a C++ Program without Semicolons?

Answers

Answered by AmardeepS
0

Program without semicolons:

#include <iostream>  

int main()  

{  

   if (std::cout << "Hello World ")  

   {  

   }  

}  

Output:  

Hello World

Similar questions