retagged by
2,741 views

Related questions

0 votes
0 votes
2 answers
1
0 votes
0 votes
2 answers
2
Nitesh Choudhary asked Jun 5, 2017
497 views
What is the Output of following code?void main(){int i=10;int *j;void *k;k=&i;j=&i;k++;j++;printf("Address of j=%u",j);}
0 votes
0 votes
1 answer
3
sushmita asked Mar 27, 2017
512 views
Find the out put of the following C program. main() { char *ptr = "techtud"; char p= (*ptr)++; printf("%s\n",ptr); }the output of the program came as$?$