you used semi colon twice.check out this:Write a program in C to display a message without using semi colon anywhere in programAnswer:#include void main(){if(printf(”Hello”)){}}We can write the printf inside while or switch as well for same result.
This comment has been removed by the author.
#includevoid main(void){ if(printf("Hello world")) { }}
you used semi colon twice.
ReplyDeletecheck out this:
Write a program in C to display a message without using semi colon anywhere in program
Answer:
#include
void main()
{
if(printf(”Hello”))
{}
}
We can write the printf inside while or switch as well for same result.
This comment has been removed by the author.
ReplyDelete#include
ReplyDeletevoid main(void)
{
if(printf("Hello world"))
{
}
}