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


Please Help Members By Posting Answers For Below Questions

Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?

1799


What is .obj file in c?

831


What does *p++ do? What does it point to?

806


How do I round numbers?

776


Explain what is the benefit of using #define to declare a constant?

792


What are global variables and explain how do you declare them?

782


What are nested functions in c?

763


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

2011


What is the difference between %d and %i?

803


What is a pointer variable in c language?

833


What is the difference between int main and void main in c?

812


What is the function of multilevel pointer in c?

830


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

1008


What are the 5 elements of structure?

805


What are formal parameters?

847