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 / sanjay
write a �Hello World� program in �c� without using a
semicolon?
#include<stdio.h>
int main()
{
while(!(printf("%s \n","hello world!!!")));
{
}
return(0);
}
| Is This Answer Correct ? | 22 Yes | 92 No |
Post New Answer View All Answers
What is the difference between void main and main in c?
What is strcmp in c?
What is the concatenation operator?
State the difference between x3 and x[3].
What are c header files?
What are the advantages of c language?
What is a pointer in c?
write a program to print largest number of each row of a 2D array
What is sizeof array in c?
Define macros.
What is the use of ?: Operator?
How to set file pointer to beginning c?
Write a program to swap two numbers without using third variable?
When should you not use a type cast?
What is the difference between malloc() and calloc() function in c language?