how can we print  hellow world programme without using semicolon

Answer Posted / akbar

#include<stdio.h>
int main()
{
printf("Hello World
");
return 0;
}

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between void main and main in c?

613


Explain what is wrong in this statement?

626


Is c++ based on c?

642


What is the modulus operator?

726


What is the difference between far and near ?

674






The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?

651


What is clrscr in c?

664


In c programming, explain how do you insert quote characters (? And ?) Into the output screen?

756


5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.

1576


What is const keyword in c?

734


The program will first compute the tax you owe based on your income. User is prompted to enter income. Program will compute the total amount of tax owed based on the following: Income Tax 0 - $45,000 = 0.15 x income $45,001 - $90,000 = 6750 + 0.20 x (income – 45000) $90,001 - $140,000 = 15750 + 0.26 x (income – 90000) $140,001 - $200,000 = 28750 + 0.29 x (income – 140000) Greater than $200,000 = 46150 + 0.33 x (income – 200000) Dollar amounts should be in dollars and cents (float point numbers with two decimals shown). Tax is displayed on the screen.

1052


What are different types of pointers?

556


Explain what is the difference between functions getch() and getche()?

597


I need a sort of an approximate strcmp routine?

649


console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above

647