write a “Hello World” program in “c” without using a semicolon?
Answer Posted / latiff
int main()
{
if(printf("hello world"))
}
In if statement compiler does not expect semicolon.
| Is This Answer Correct ? | 6 Yes | 4 No |
Post New Answer View All Answers
Explain what is the heap?
What is the use of define in c?
what is different between auto and local static? why should we use local static?
What is file in c preprocessor?
Why do we use static in c?
Write programs for String Reversal & Palindrome check
What is an lvalue?
What happens if a header file is included twice?
Write a program to implement queue.
What is wrong with this code?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
What is the difference between null pointer and wild pointer?
What is the use of structure padding in c?
Write a program to print fibonacci series using recursion?
How does #define work?