How can you print HELLO WORLD without using "semicolon"?
Answer Posted / gganesh
#include<stdio.h>
void main()
{
if(printf("Hello world"))
{
}
}
| Is This Answer Correct ? | 30 Yes | 8 No |
Post New Answer View All Answers
What is the general form of function in c?
What is data structure in c and its types?
how to make a scientific calculater ?
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
Are pointers really faster than arrays?
how to build a exercise findig min number of e heap with list imlemented?
how we can make 3d venturing graphics on outer interface
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
What is meant by high-order and low-order bytes?
What is the meaning of && in c?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
Why is this loop always executing once?
Explain what is gets() function?
Describe wild pointers in c?
What is dynamic dispatch in c++?