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 an auto variable in c?

991


Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon

2010


What are header files why are they important?

853


Can we use visual studio for c?

797


Which header file is essential for using strcmp function?

1231


What is meant by type specifiers?

911


Differentiate fundamental data types and derived data types in C.

837


How many types of functions are there in c?

821


Where are some collections of useful code fragments and examples?

971


Explain union.

933


How does pointer work in c?

862


Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings

2500


What is a class c rental property?

876


Differentiate between a for loop and a while loop? What are it uses?

941


What is else if ladder?

817