How can you print HELLO WORLD without using "semicolon"?
Answer Posted / prakash
#include<stdio.h>
#include<conio.h>
void main()
{
if(printf(hello world))
{
getch();
}
}
| Is This Answer Correct ? | 12 Yes | 9 No |
Post New Answer View All Answers
Is return a keyword in c?
What is adt in c programming?
Difference between Function to pointer and pointer to function
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
What is the easiest sorting method to use?
Can you please explain the scope of static variables?
What is ## preprocessor operator in c?
Are enumerations really portable?
What are the advantages of union?
What is p in text message?
Explain what are the advantages and disadvantages of a heap?
#include
Write a program to generate the Fibinocci Series
c program to compute AREA under integral
State the difference between x3 and x[3].