how to write hello word without using semicolon at the end?
Answer Posted / ramu gurram
#include<stdio.h>
void main()
{
if(printf("hello world"))
{
}
}
| Is This Answer Correct ? | 10 Yes | 1 No |
Post New Answer View All Answers
What is unary operator?
Explain the difference between #include "..." And #include <...> In c?
Why header file is used in c?
Why is c called a mid-level programming language?
What is the difference between the expression “++a” and “a++”?
Can we initialize extern variable in c?
Do you have any idea about the use of "auto" keyword?
What does static variable mean in c?
How many identifiers are there in c?
c program for searching a student details among 10 student details
Explain what is the concatenation operator?
Can include files be nested?
What are the 4 types of functions?
What is the purpose of clrscr () printf () and getch ()?
How can you increase the allowable number of simultaneously open files?