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 / vikky_manit
#inlcude<stdio.h>
void main()
{
if(printf("Hello world"))
{
}
}
| Is This Answer Correct ? | 16 Yes | 9 No |
Post New Answer View All Answers
What is the main difference between calloc () and malloc ()?
Tell us the use of fflush() function in c language?
Explain how can I convert a number to a string?
What are the types of data structures in c?
How to explain the final year project as a fresher please answer with sample project
Once I have used freopen, how can I get the original stdout (or stdin) back?
Can you define which header file to include at compile time?
How would you obtain the current time and difference between two times?
5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.
Calculate 1*2*3*____*n using recursive function??
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
What is typeof in c?
Can you think of a logic behind the game minesweeper.
How can you call a function, given its name as a string?