- 2
How to print “hello word” without using semicolon in C?
UPDATE : this question ask by one of interviewer in MNC company.
2 Antworten
+ 11
#include <stdio.h>
int main() {
if(printf("Hello World") == 0){}
}
0
#include <stdio.h>
void main() {
if(printf("Hello world"))
{
}
}