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
What is the significance of an algorithm to C programming?
What are the difference between a free-standing and a hosted environment?
What is character set?
difference between Low, Middle, High Level languages in c ?
Write a Program to find whether the given number or string is palindrome.
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
What are called c variables?
What is union and structure in c?
p*=(++q)++*--p when p=q=1 while(q<=6)
write a c program to calculate sum of digits till it reduces to a single digit using recursion
Is there a built-in function in C that can be used for sorting data?
Why is c faster?
List some basic data types in c?
why do some people write if(0 == x) instead of if(x == 0)?
program to find out date after adding 31 days to a date in the month of febraury also consider the leap year