Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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 &#65533;Hello World&#65533; program in &#65533;c&#65533; 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

Write a program to find the biggest number of three numbers in c?

1101


What is the use of clrscr?

1156


When should the register modifier be used? Does it really help?

1009


What is the process of writing the null pointer?

1065


What is the benefit of using const for declaring constants?

1104


What is difference between array and structure in c?

1272


number of times a digit is present in a number

2081


What are keywords c?

1096


Define and explain about ! Operator?

1047


What is the use of gets and puts?

1093


int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;

1932


write a c program in such a way that if we enter the today date the output should be next day's date.

2240


What is the easiest sorting method to use?

1243


Explain what are the different data types in c?

1267


Write a code to generate a series where the next element is the sum of last k terms.

1292