Program to Print Hello without Semicolon
Logic :
- Create a if condition
- In if print "Hello"
- End if condition
- End program
Code :
#include<iostream>
using namespace std;
int main()
{
if(printf("Hello"))
{
}
return 0;
}
Copyright © 2021 Coding Demons All Rights Reseved
0 Comments