How can you print HELLO WORLD without using "semicolon"?
Answer Posted / spicy
#include<stdio.h>
void main()
{
if(printf("HELLO WORLD"))
getch();
}
| Is This Answer Correct ? | 3 Yes | 6 No |
Post New Answer View All Answers
What is #ifdef ? What is its application?
Explain what is wrong with this program statement? Void = 10;
PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE
What is union and structure?
What is a file descriptor in c?
Explain modulus operator.
Is main is a keyword in c?
What is nested structure?
What are the general description for loop statement and available loop types in c?
What is line in c preprocessor?
What is c programing language?
What is call by value in c?
can we implement multi-threads in c.
Explain bit masking in c?
Is c compiled or interpreted?