52.write a “Hello World” program in “c” without using a
semicolon?
53.Give a method to count the number of ones in a 32 bit number?
54.write a program that print itself even if the source file
is deleted?
55.Given an unsigned integer, find if the number is power of 2?

Answer Posted / sankar kiran

#include<stdio.h>
#include<conio.h>
void main()
{
while(printf("Hello World"))
{
break;
}
getch();

}

Is This Answer Correct ?    6 Yes 8 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is meant by keywords in c?

631


Explain which function in c can be used to append a string to another string?

600


What is the condition that is applied with ?: Operator?

671


What is table lookup in c?

641


How to write c functions that modify head pointer of a linked list?

554






How can you be sure that a program follows the ANSI C standard?

1142


List the difference between a "copy constructor" and a "assignment operator"?

594


Can we change the value of #define in c?

592


How do you list files in a directory?

573


Can we compile a program without main() function?

639


what is a NULL Pointer? Whether it is same as an uninitialized pointer?

771


Write a program of advanced Fibonacci series.

715


Explain what is a const pointer?

647


Compare array data type to pointer data type

607


Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.

1504