+ 2
Write a program in C++ to print "Hello World" but the program should not contain any semicolon.
I got this question in one of the programming competition. I solved it using if..else , is there any other way to do it?
3 Antworten
+ 4
while(cout<<"Hello world")
{
break;
}
+ 2
#include<iostream.h>
void main(){
if(cout<<"Hello World"){}
}//My solution to the question