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 / saurabh
#include<stdio.h>
main()
{
while(printf("Hello World \n"))
{
}
}
| Is This Answer Correct ? | 40 Yes | 25 No |
Post New Answer View All Answers
What is typeof in c?
What is the difference between the expression “++a” and “a++”?
How can you tell whether two strings are the same?
What is c value paradox explain?
Explain what are the standard predefined macros?
Where static variables are stored in c?
List out few of the applications that make use of Multilinked Structures?
What is the equivalent code of the following statement in WHILE LOOP format?
What is your stream meaning?
Why c is a procedural language?
What are the features of c languages?
Why is c called c?
List the difference between a "copy constructor" and a "assignment operator"?
What is the scope of an external variable in c?
Find MAXIMUM of three distinct integers using a single C statement