Tux Education Our New Education Channel Please Share And Subscribe It...

/* Program To Print HELLO WORLD Without Using Semicolon Solution : 2*/


// Compiler : Dev-C++ 4.9.9.2

#include<stdio.h>

int main()
{
    while(!printf("Hello World"))
    
    getch();
    return 0;
}

Post a Comment