399 views

1 Answer

Related questions

0 votes
0 votes
0 answers
1
0 votes
0 votes
1 answer
2
Mandeep Singh asked Mar 28, 2017
393 views
int c=31, n;scanf(“%d”,&n);int k=n<<c;if(k&&1) return 1;return 0;
2 votes
2 votes
1 answer
3
Akhil01 asked Jul 17, 2016
467 views
#include int main() { int *p, a; p = &a; scanf("%d",p); printf("a = %d *p = %d", a, *p); }a = 32766 *p = 32766a = 32767 *p = 32767a = -1219137971 *p = -1219137971No Outpu...
3 votes
3 votes
2 answers
4
Himani Srivastava asked Nov 5, 2015
6,713 views
The following code fragment: int x, y= 2, z, a; x= (y* =2) + (z= a =y); printf(&ldquo;%d&rdquo;, x); (a) prints 8(b) prints 6(c) prints 6 or 8 depending on the compile...