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 / rajat sharan
#include<stdio.h>
main()
{
if (printf(hello world))
}
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What is return type in c?
Explain indirection?
Is it better to use a macro or a function?
What are types of structure?
What is the best organizational structure?
What is the -> in c?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
Tell me when would you use a pointer to a function?
How to write a multi-statement macro?
What is a pointer on a pointer in c programming language?
Can we add pointers together?
What is a static function in c?
What is a void pointer? When is a void pointer used?
How many levels deep can include files be nested?
Why static variable is used in c?