write a “Hello World” program in “c” without using a semicolon?
Answer Posted / bitan
int main(){
if(printf("Hello World")){}
}
| Is This Answer Correct ? | 35 Yes | 4 No |
Post New Answer View All Answers
What is a list in c?
What is the process of writing the null pointer?
What is function prototype?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
What are dangling pointers in c?
code for replace tabs with equivalent number of blanks
Write a program with dynamically allocation of variable.
Explain about the functions strcat() and strcmp()?
What are different types of pointers?
Do string constants represent numerical values?
What is a far pointer in c?
What is the difference between ‘g’ and “g” in C?
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
What is #include stdio h?
What is const and volatile in c?