377 views

1 Answer

Best answer
4 votes
4 votes

Yes, Answer is D) Garbage Value

Because nothing is wrong with code. 

selected by

Related questions

0 votes
0 votes
1 answer
2
Desert_Warrior asked Jun 4, 2016
623 views
0 votes
0 votes
1 answer
3
Desert_Warrior asked Jun 2, 2016
718 views
void main() { int i=100,j=10,k; int *p=&j; k=i/(*p); printf("%d",k); }OPTIONS : [ a] 0 [b] 10 [c] 100 [d] None of the above
0 votes
0 votes
1 answer
4
Desert_Warrior asked Jun 2, 2016
745 views
int main(){ static int arr[20]; int x=0; arr[x] = x++; printf("\n %d %d %d", arr[0],arr ,x); }OPTIONS :A) 000b) 101c) 001D) can't say