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

Write Hello World Without using Hello World From Ukrocky

#include<iostream.h>

void main()
{
int a[12]={72,101,108,108,111,32,87,111,114,108,100,0};
for(int i=0; i<12; i++)
{
cout<<char(a[i]);
}
cout<<endl;
}

Is This Answer Correct ?    1 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why void is used in c?

954


Explain how can I make sure that my program is the only one accessing a file?

1169


What is pointer to pointer in c with example?

987


What is the most efficient way to store flag values?

1128


Where is volatile variable stored?

1029


What are local static variables? How can you use them?

1084


What does 3 periods mean in texting?

1015


swap 2 numbers without using third variable?

1086


Explain Basic concepts of C language?

1084


What is wild pointer in c with example?

1021


What is the role of this pointer?

995


What are the 3 types of structures?

983


What is meant by type specifiers?

1084


Explain what is the difference between #include and #include 'file' ?

971


Explain how can I read and write comma-delimited text?

1118