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 / rajeev
#include<stdio.h>
main()
{
if(printf("Hello world \n"))
{
}
}
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
What are the functions to open and close the file in c language?
ATM machine and railway reservation class/object diagram
Is Exception handling possible in c language?
How to compare array with pointer in c?
What is the use of sizeof?
Why do we use c for the speed of light?
How to draw the flowchart for structure programs?
Is this program statement valid? INT = 10.50;
Find MAXIMUM of three distinct integers using a single C statement
Is main a keyword in c?
Write a code of a general series where the next element is the sum of last k terms.
What is void pointers in c?
What is the difference between NULL and NUL?
What is a floating point in c?