write a “Hello World” program in “c” without using a semicolon?

Answer Posted / manish

int main()
{
if(printf("Hello World"))
}

Is This Answer Correct ?    1 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.

2640


Explain what are its uses in c programming?

581


write a program to rearrange the array such way that all even elements should come first and next come odd

1746


What do you understand by friend-functions? How are they used?

633


Stimulate calculator using Switch-case-default statement for two numbers

2433






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.

2206


When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?

795


Which is the memory area not included in C program? give the reason

1489


show how link list can be used to repersent the following polynomial i) 5x+2

1664


What is variable and explain rules to declare variable in c?

541


Can you please explain the difference between malloc() and calloc() function?

607


What is C language ?

1514


Can static variables be declared in a header file?

606


How will you delete a node in DLL?

670


How can I find out how much free space is available on disk?

618