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
Is it acceptable to declare/define a variable in a c header?
When was c language developed?
Explain what are global variables and explain how do you declare them?
How can I call fortran?
Differentiate Source Codes from Object Codes
Explain the difference between #include "..." And #include <...> In c?
What is ctrl c called?
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
What are pointers? What are different types of pointers?
What is boolean in c?
What is .obj file in c?
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
How can you read a directory in a C program?
What is the difference between functions abs() and fabs()?
Write a factorial program using C.