287 views
0 votes
0 votes

1 Answer

1 votes
1 votes
The ans must be -128 because after 127 the next value is -128 and which is less than 0 .

Related questions

0 votes
0 votes
0 answers
1
Nishi Agarwal asked Mar 10, 2019
497 views
A(n){if(n<1) return (1);else return A(n-2)+B(n-1);}B(n){if(n<=1) return 1;else return B(n-1)+A(n-2);}
0 votes
0 votes
1 answer
2
CJ147 asked Oct 11, 2018
597 views
The Following code has output Gate2019 #include <stdio.h char* fun(){ char* temp = "Gate2019"; return temp; } int main(void) { // your code goes here puts(fun()); return...
0 votes
0 votes
0 answers
3
iita asked Dec 15, 2016
251 views
0 votes
0 votes
0 answers
4
iita asked Jan 27, 2017
218 views