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 / tyutyjtytydf

#include<stdio.h>
#include<conio.h>
main()
{
if(puts("hello world"))
{}
}

Is This Answer Correct ?    10 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can a file other than a .h file be included with #include?

688


How do I get a null pointer in my programs?

622


number of times a digit is present in a number

1545


#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }

721


Explain how to reverse singly link list.

611






What does *p++ do?

589


How many levels deep can include files be nested?

654


What is meant by realloc()?

680


what is the basis for selection of arrays or pointers as data structure in a program

3790


What is infinite loop?

632


What are the difference between a free-standing and a hosted environment?

747


When I tried to go into a security sites I am denied access and a message appeared saying 'applet not initialize'. How can I rectify this problem.

1533


Can i use “int” data type to store the value 32768? Why?

758


Write a code to remove duplicates in a string.

633


write a program to print data of 5 five students with structures?

1612