896 views

1 Answer

0 votes
0 votes
I think Zero Three

Related questions

3.5k
views
2 answers
2 votes
Khushal Kumar asked Jul 4, 2017
3,457 views
Predict the output of following C programs1.#includeint main(){ char a = '\012'; printf("%d", a); return 0;}2.#includeint main(){ char a = '012'; printf...
618
views
1 answers
0 votes
Desert_Warrior asked Jun 4, 2016
618 views
700
views
1 answers
0 votes
Desert_Warrior asked Jun 2, 2016
700 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
1.5k
views
2 answers
0 votes
Desert_Warrior asked Jun 2, 2016
1,509 views
int main(){ int x=5,y; x++; printf("x=%d\n",x); y=x= ++x+10/x; printf("new x= %d",x); }OPTIONS :