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

swap 2 numbers without using third variable?

877


What is %g in c?

836


What is string constants?

891


What is the process of writing the null pointer?

789


Explain main function in c?

859


What do you mean by a sequential access file?

821


Explain what are global variables and explain how do you declare them?

847


What is equivalent to ++i+++j?

863


What is the importance of c in your views?

815


Why string is used in c?

762


Is c easy to learn?

747


Explain the process of converting a Tree into a Binary Tree.

2405


What is %s and %d in c?

764


Explain how can a program be made to print the line number where an error occurs?

942


Explain function?

867