write a “Hello World” program in “c” without using a semicolon?
Answer Posted / manish
int main()
{
if(printf("Hello World"))
}
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Can you tell me how to check whether a linked list is circular?
What are the benefits of c language?
What is function prototype?
What does 2n 4c mean?
In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.
How can I remove the leading spaces from a string?
Can you apply link and association interchangeably?
Why is this loop always executing once?
Explain what is the concatenation operator?
What is the c language function prototype?
What is static volatile in c?
Explain what math functions are available for integers? For floating point?
What is nested structure with example?
is it possible to create your own header files?
In C language what is a 'dangling pointer'?