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 / yash
hi yash
#include<stdio.h>
int main()
{
while(printf("hello")){}
}
| Is This Answer Correct ? | 33 Yes | 53 No |
Post New Answer View All Answers
How can you return multiple values from a function?
How to create struct variables?
What is the function of this pointer?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
What is the use of ?: Operator?
How variables are declared in c?
What is nested structure with example?
How can this be legal c?
How are strings stored in c?
what are bit fields? What is the use of bit fields in a structure declaration?
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
What is wrong with this program statement?
Why we use int main and void main?
Explain what is the purpose of "extern" keyword in a function declaration?