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
Why enum is used in c?
The file stdio.h, what does it contain?
What do you mean by a sequential access file?
How do you define a function?
What are qualifiers in c?
Why can’t constant values be used to define an array’s initial size?
Write a code to remove duplicates in a string.
Who invented bcpl language?
#include
What do you mean by command line argument?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
What are the various types of control structures in programming?
Is flag a keyword in c?
What is the use of a ‘ ’ character?
Why is a semicolon (;) put at the end of every program statement?