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 / deepak kumar
#include<stdio.h>
main()
{
while(printf("hello world"))
{
}
return(0);
}
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
What is the difference between constant pointer and constant variable?
ATM machine and railway reservation class/object diagram
How can I find out if there are characters available for reading?
Where does the name "C" come from, anyway?
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
What is exit() function?
What is external variable in c?
Why should I prototype a function?
What are # preprocessor operator in c?
What is a stream water?
Calculate 1*2*3*____*n using recursive function??
What does. int *x[](); means ?
What is the function of multilevel pointer in c?
explain what is a newline escape sequence?