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 / chandan

52.write a �Hello World� program in �c� without using a
semicolon?
#include<stdio.h>
void main()
{
if(printf("Hello world"))
{}
//if(!(printf("Hello world"))) {} it will also work.
//while(!(printf("Hello world"))) {} it will also work.
}

Is This Answer Correct ?    3 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is c weakly typed?

736


What is the function of multilevel pointer in c?

825


Write a program to print factorial of given number without using recursion?

766


Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.

1116


How many types of errors are there in c language? Explain

741


Write a program to implement queue.

853


What does it mean when the linker says that _end is undefined?

845


What is putchar() function?

835


What is memory leak in c?

835


Why do we use return in c?

732


What is an operator?

831


What is a static function in c?

815


What is 'bus error'?

842


What do the functions atoi(), itoa() and gcvt() do?

902


Explain how can you tell whether two strings are the same?

786