How can I make a program in c to print 'Hello' without
using semicolon in the code?
Answer Posted / manjushree
#include<stdio.h>
#include<conio.h>
int main()
{
if(printf("Hello"))
{
}
getch();
}
// if u use while loop it goes for an infinite loop , so
better to use if condition
| Is This Answer Correct ? | 12 Yes | 3 No |
Post New Answer View All Answers
What are the advantages of the functions?
which is an algorithm for sorting in a growing Lexicographic order
can we have joblib in a proc ?
Why do we use & in c?
how to find anagram without using string functions using only loops in c programming
Explain what are run-time errors?
What is the right type to use for boolean values in c? Is there a standard type?
Does * p ++ increment p or what it points to?
please explain every phase in the "SDLC" in the dotnet.
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
Can we replace the struct function in tree syntax with a union?
Why is sprintf unsafe?
How do you declare a variable that will hold string values?
What is printf () in c?
What are the advantages and disadvantages of a heap?