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
Why is a semicolon (;) put at the end of every program statement?
hi send me sample aptitude papers of cts?
Which is the memory area not included in C program? give the reason
What is the difference between procedural and functional programming?
Explain zero based addressing.
What is static memory allocation? Explain
Combinations of fibanocci prime series
What is a struct c#?
What's the difference between constant char *p and char * constant p?
What are the 5 types of inheritance in c ++?
Can we assign string to char pointer?
What is an expression?
a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation a) circular b) ordinary c) array d) linear list
which type of aspect you want from the student.
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }