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
What are qualifiers?
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
What are the different types of objects used in c?
What is assignment operator?
What is structure and union in c?
What does p mean in physics?
Difference between exit() and _exit() function?
What is calloc() function?
What is the method to save data in stack data structure type?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
Explain the use of keyword 'register' with respect to variables.
What is the difference between NULL and NUL?
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
What is null pointer in c?
Implement bit Array in C.