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 a=4,b=2;
a=b<<a + b>>2;
printf("%d", a);
}

Answer Posted / manish soni tagore collage jai

b<<a=2<<4=32;
and
b>>2=1>>2=0
so
32+0=32

Is This Answer Correct ?    47 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are header files why are they important?

1153


Tell us two differences between new () and malloc ()?

1275


Do you know the difference between malloc() and calloc() function?

1111


What is a global variable in c?

1075


What is main () in c language?

1187


What does sizeof return c?

1129


Explain what is the use of a semicolon (;) at the end of every program statement?

1261


What are the 3 types of structures?

1064


Differentiate between a for loop and a while loop? What are it uses?

1234


What is the right way to use errno?

1116


Why c is a procedural language?

1129


What is the difference between the expression “++a” and “a++”?

1272


What are the advantages and disadvantages of c language?

1070


Does c have an equivalent to pascals with statement?

1063


write a c program to find the sum of five entered numbers using an array named number

2204