write a “Hello World” program in “c” without using a semicolon?
Answer Posted / latiff
int main()
{
if(printf("hello world"))
}
In if statement compiler does not expect semicolon.
Is This Answer Correct ? | 6 Yes | 4 No |
Post New Answer View All Answers
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
What is a pragma?
What is struct node in c?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
What is the significance of an algorithm to C programming?
What are the application of void data type in c?
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
What is a spanning Tree?
Why c is called object oriented language?
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
How do you write a program which produces its own source code as output?
What is declaration and definition in c?
What does the && operator do in a program code?
What is function what are the types of function?
Differentiate between new and malloc(), delete and free() ?