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 / sankar kiran
#include<stdio.h>
#include<conio.h>
void main()
{
while(printf("Hello World"))
{
break;
}
getch();
}
| Is This Answer Correct ? | 6 Yes | 8 No |
Post New Answer View All Answers
What are the preprocessor categories?
Where we use clrscr in c?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
What is a struct c#?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
What is #define size in c?
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
What is adt in c programming?
Where is volatile variable stored?
Write a program which returns the first non repetitive character in the string?
Does * p ++ increment p or what it points to?
Explain what are binary trees?
What is a protocol in c?
How can I prevent another program from modifying part of a file that I am modifying?
Explain how can you check to see whether a symbol is defined?