how will you "print" without semicolum
Answers
Answered by
4
Answer:
Let's see a simple c example to print "hello world" using if statement and without using semicolon.
#include<stdio.h>
int main()
{
if(printf("hello world")){}
return 0;
}
HOPE IT HELPS YOU.....
Happy Diwali
Answered by
0
Answer:
Let's see a simple c example to print "hello world" using if statement and without using semicolon.
#include<stdio.h>
int main()
{
if(printf("hello world")){}
return 0;
}
Similar questions