How can I make a program in c to print 'Hello' without
using semicolon in the code?
Answer Posted / madhu
int main()
{
if(printf("Hello"))
{
}
}
Answer 2nd is correct;
| Is This Answer Correct ? | 23 Yes | 1 No |
Post New Answer View All Answers
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
What are global variables and explain how do you declare them?
Is calloc better than malloc?
Explain what is the difference between null and nul?
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
Why are all header files not declared in every c program?
Can you please compare array with pointer?
why we wont use '&' sing in aceesing the string using scanf
What are register variables? What are the advantage of using register variables?
Under what circumstances does a name clash occur?
How can I convert a number to a string?
What is keyword with example?
Does c have an equivalent to pascals with statement?
What is the difference between declaring a variable and defining a variable?
What is atoi and atof in c?