write a “Hello World” program in “c” without using a semicolon?
Answer Posted / mahesh
#include<stdio.h>
void main()
{
if(printf("Hello World"))
{
}
}
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What are file streams?
List some basic data types in c?
Explain how can you tell whether two strings are the same?
What is calloc in c?
What is c programming structure?
Can main () be called recursively?
State the difference between realloc and free.
What is a program flowchart?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
What is #define in c?
Is anything faster than c?
Explain how can I pad a string to a known length?
Explain how can I convert a number to a string?
how to print the character with maximum occurence and print that number of occurence too in a string given ?
What are the valid places to have keyword “break”?