how to write hello word without using semicolon at the end?
Answer Posted / vikas
int main(void)
{
if(printf("hello world"))
}
| Is This Answer Correct ? | 18 Yes | 3 No |
Post New Answer View All Answers
Explain the use of 'auto' keyword in c programming?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
What does stand for?
Can a variable be both const and volatile?
What is the purpose of type declarations?
What is the use of f in c?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
Which one would you prefer - a macro or a function?
Why header file is used in c?
When we use void main and int main?
what do the 'c' and 'v' in argc and argv stand for?
Does * p ++ increment p or what it points to?
What does the && operator do in a program code?
Explain how do you generate random numbers in c?