write a “Hello World” program in “c” without using a semicolon?
Answer Posted / prakash.k.r
#include<stdio.h>
void main()
{
if(printf("Hello World"))
{
}
}
printf() fn is available in the stdio header file, and so it
must be loaded. Using int main without return stmt is not
good. If any other solution, plz add your answer.
Is This Answer Correct ? | 16 Yes | 1 No |
Post New Answer View All Answers
How are pointers declared in c?
What is a global variable in c?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
What is the advantage of an array over individual variables?
What is anagram in c?
Explain what are preprocessor directives?
What are types of functions?
Add Two Numbers Without Using the Addition Operator
Difference between macros and inline functions? Can a function be forced as inline?
i got 75% in all semester am i eligible for your company
What is a function simple definition?
What is page thrashing?
What is const keyword in c?
With the help of using classes, write a program to add two numbers.
What is the basic structure of c?