Print Hello without semicolon ; A C++ program to print Hello without semicolon

   


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;
}


***

!! SUBSCRIBE FOR MORE CODES & VIDEOS !!



Post a Comment

0 Comments