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 / saurabh
#include<stdio.h>
main()
{
while(printf("Hello World \n"))
{
}
}
| Is This Answer Correct ? | 40 Yes | 25 No |
Post New Answer View All Answers
Explain do array subscripts always start with zero?
Explain what’s a signal? Explain what do I use signals for?
What is the purpose of main( ) in c language?
Is multithreading possible in c?
What are the similarities between c and c++?
What are compound statements?
the question is that what you have been doing all these periods (one year gap)
Can variables be declared anywhere in c?
What is the difference between fread buffer() and fwrite buffer()?
Differentiate between a for loop and a while loop? What are it uses?
Can you please explain the difference between syntax vs logical error?
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
Explain what math functions are available for integers? For floating point?
Why c is called a mid level programming language?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.