356 views

Please log in or register to answer this question.

Related questions

3 votes
3 votes
1 answer
2
Rohit Gupta 8 asked Oct 8, 2017
953 views
Consider the following codeint main(){ char *str = "ABCDEF"; printf("%d",fun(str)); return 0; } int fun(int *p1){ int *p2 = p1; while(*++p1); return (p2-p1); }The output ...
0 votes
0 votes
1 answer
3
VS asked Dec 14, 2017
925 views