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
How can I do peek and poke in c?
write a proram to reverse the string using switch case?
What is substring in c?
Explain how can you be sure that a program follows the ansi c standard?
Once I have used freopen, how can I get the original stdout (or stdin) back?
What is the difference between if else and switchstatement
How can I remove the trailing spaces from a string?
How can I open files mentioned on the command line, and parse option flags?
What are linker error?
What is volatile variable in c?
Why static is used in c?
Should a function contain a return statement if it does not return a value?
What does. int *x[](); means ?
Is it valid to address one element beyond the end of an array?
What are qualifiers in c?