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 / chandan
52.write a �Hello World� program in �c� without using a
semicolon?
#include<stdio.h>
void main()
{
if(printf("Hello world"))
{}
//if(!(printf("Hello world"))) {} it will also work.
//while(!(printf("Hello world"))) {} it will also work.
}
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
Write a program to find the biggest number of three numbers in c?
What is the use of clrscr?
When should the register modifier be used? Does it really help?
What is the process of writing the null pointer?
What is the benefit of using const for declaring constants?
What is difference between array and structure in c?
number of times a digit is present in a number
What are keywords c?
Define and explain about ! Operator?
What is the use of gets and puts?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
write a c program in such a way that if we enter the today date the output should be next day's date.
What is the easiest sorting method to use?
Explain what are the different data types in c?
Write a code to generate a series where the next element is the sum of last k terms.