main()
{int a=200*200/100;
printf("%d",a);
}

Answer Posted / shafi

int a=200*200/100;/*it is related with assignment operator so
it's right->left shift*/
=200*2;
=400;
the value of a=400

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are global variables and explain how do you declare them?

581


Difference between goto, long jmp() and setjmp()?

711


Explain how do you determine the length of a string value that was stored in a variable?

671


Why can’t we compare structures?

815


The __________ attribute is used to announce variables based on definitions of columns in a table?

673






hi send me sample aptitude papers of cts?

1654


What is wrong with this code?

696


If fflush wont work, what can I use to flush input?

617


Which header file should you include if you are to develop a function which can accept variable number of arguments?

810


What is a 'null pointer assignment' error?

727


What would happen to X in this expression: X += 15; (assuming the value of X is 5)

1306


What is Dynamic memory allocation in C? Name the dynamic allocation functions.

559


number of times a digit is present in a number

1544


Explain how does flowchart help in writing a program?

634


write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34

1631