/* C language to Print a message without using semicolons */
Understand algorithms
if ( Expression )
Expression value = 0 or 1 ( True or False )
1. if ( 1 )
{
printf("Hello");
}
Output :- Hello
2. if( 0 )
{
printf("Hello");
}
Output :- Null ( None )
{ } using Curly Braces open and close
if ( Expression )
{
--------------------
__---------------
}
if ( Expression ) { }
Let's start
#include<stdio.h>
void main()
{
if ( printf("Google")){}
}
Output :- Google

0 Comments
If you have any doubts about the Programming language & Basic Computer. Please let me know.