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 / murali krishna
52.#include<stdio.h>
int main()
{
for(printf("hello world");;)
{
}
return(0);
}
| Is This Answer Correct ? | 11 Yes | 61 No |
Post New Answer View All Answers
Write a program to reverse a given number in c?
What are the storage classes in C?
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
Place the #include statement must be written in the program?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
How can I recover the file name given an open stream or file descriptor?
please help me..... please codes and flowchart plz turbo c lang po yan.....please asap response... 3. Make an astrology program. The user types in his or her birthday (month, day, and year as integer), and the program responds with the user’s zodiac sign, horoscope, and other information related to it. If the user’s birth year falls into a leap year, your program should display an appropriate message for it. NOTES: Conditional Statements: it should be with graphics
Function calling procedures? and their differences? Why should one go for Call by Reference?
Can we compile a program without main() function?
Why we use void main in c?
What is a pointer in c plus plus?
How do you determine the length of a string value that was stored in a variable?
Explain how do you search data in a data file using random access method?
Explain what is a const pointer?
What are enumerated types?