edited by
518 views

2 Answers

0 votes
0 votes
the answer is most probably  D.
0 votes
0 votes
At *p[] linking ,compiler will fetch wrong addresses and some garbage values!

Related questions

1 votes
1 votes
0 answers
1
0 votes
0 votes
1 answer
2
Hemant Parihar asked Feb 3, 2017
519 views
#include<stdio.h>int main() { char *p; p = "%d\n"; p++; p++; printf(p-2, 400); return 0;}Output : 400I ran this program and got 400 as output. But I don...