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...

what will be the output for the following
main()
{
printf("hi" "hello");
}

Answer Posted / prabu

The output will be
hi hello

Is This Answer Correct ?    1 Yes 8 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a program to print “hello world” without using semicolon?

1094


#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }

1124


Add Two Numbers Without Using the Addition Operator

791


How can I invoke another program (a standalone executable, or an operating system command) from within a c program?

1155


Explain what is the difference between far and near ?

1064


Explain what is a const pointer?

1057


which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;

3196


Is c is a low level language?

1094


What is the best way of making my program efficient?

988


What is context in c?

900


Write a program to use switch statement.

1098


How many levels of pointers can you have?

1150


Why c language is called c?

971


How do I convert a string to all upper or lower case?

1075


program for reversing a selected line word by word when multiple lines are given without using strrev

2442