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

main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}

what is the output?

Answer Posted / hemanth

5
10
2

Is This Answer Correct ?    0 Yes 11 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402

3965


What is the difference between call by value and call by reference in c?

1212


List the difference between a 'copy constructor' and a 'assignment operator' in C?

1138


What is the best style for code layout in c?

1142


Do you have any idea how to compare array with pointer in c?

1090


Is boolean a datatype in c?

1128


Explain bit masking in c?

1191


Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?

1214


What are the advantages and disadvantages of pointers?

1121


define string ?

1169


What is wrong with this program statement? void = 10;

1311


how to find anagram without using string functions using only loops in c programming

3237


Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.

1154


The statement, int(*x[]) () what does in indicate?

1203


the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none

1110