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
Explain what are bus errors, memory faults, and core dumps?
Are the variables argc and argv are local to main?
Why c is a procedural language?
Explain the difference between #include "..." And #include <...> In c?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
Explain the term printf() and scanf() used in c language?
What is clrscr in c?
Why doesnt the call scanf work?
When we use void main and int main?
What do mean by network ?
What is main return c?
Is it cc or c in a letter?
Tell me what is the purpose of 'register' keyword in c language?
On most computers additional memory that is accessed through an adapter of feature card along with a device driver program. a) user memory b) conventional memory c) expandedmemory d) area
What are types of structure?