C program to print some text without using semi-colon anywhere in the program
#include<stdio.h>
#include<conio.h>
void main()
{
if(printf("Hi Mayank"))
{
}
}
Output : Hi Mayank
#include<stdio.h>
#include<conio.h>
void main()
{
if(printf("Hi Mayank"))
{
}
}
Output : Hi Mayank
No comments:
Post a Comment