887 views

1 Answer

0 votes
0 votes
I think Zero Three

Related questions

0 votes
0 votes
1 answer
2
Desert_Warrior asked Jun 4, 2016
606 views
0 votes
0 votes
1 answer
3
Desert_Warrior asked Jun 2, 2016
698 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
2 answers
4
Desert_Warrior asked Jun 2, 2016
1,505 views
int main(){ int x=5,y; x++; printf("x=%d\n",x); y=x= ++x+10/x; printf("new x= %d",x); }OPTIONS :