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 / swastisundar bose

52.
#include<stdio.h>
void main(){
if("Hello World")
{

}
}

Is This Answer Correct ?    17 Yes 20 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain modulus operator.

660


int far *near * p; means

3193


What is a string?

722


What is meant by keywords in c?

706


write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.

5058






Is Exception handling possible in c language?

1652


Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1

3777


What are the types of functions in c?

635


how to make a scientific calculater ?

1636


What is a structure member in c?

615


Why c is called object oriented language?

659


What is a newline escape sequence?

729


Why do we use return in c?

633


An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array

756


int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above

825