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

Answer Posted / vivek shah

because
int range 32767 to -32768
200*200=4000;
so out of range

-255

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What does the c preprocessor do?

615


What is clrscr ()?

633


illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question

1576


ATM machine and railway reservation class/object diagram

4798


Is it better to use a macro or a function?

649






WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?

1853


Which is an example of a structural homology?

778


Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor

2980


please help me..... please codes and flowchart plz turbo c lang po yan.....please asap response... 3. Make an astrology program. The user types in his or her birthday (month, day, and year as integer), and the program responds with the user’s zodiac sign, horoscope, and other information related to it. If the user’s birth year falls into a leap year, your program should display an appropriate message for it. NOTES: Conditional Statements: it should be with graphics

2854


Explain what are linked list?

617


What is getch c?

847


What does %d do?

712


What does a function declared as pascal do differently?

603


Why string is used in c?

579


Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon

1730