How can you print HELLO WORLD without using "semicolon"?

Answer Posted / gganesh

#include<stdio.h>
void main()
{
if(printf("Hello world"))
{
}
}

Is This Answer Correct ?    30 Yes 8 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain how can I prevent another program from modifying part of a file that I am modifying?

642


Why cant I open a file by its explicit path?

593


What are reserved words with a programming language?

604


What does malloc () calloc () realloc () free () do?

560


What is the scope of static variable in c?

537






write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...

1489


What is break statement?

633


What is a protocol in c?

559


What is the difference between union and structure in c?

579


A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(

1742


The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference

676


How many data structures are there in c?

619


Explain what are linked list?

626


What Is The Difference Between Null And Void Pointer?

644


Explain how can a program be made to print the line number where an error occurs?

694