Main(){ int c[ ]={2.8,3.4,4,6.7,5}; int j,*p=c,*q=c; for(j=0;j

Questions by souji1425

Showing Answers 1 - 9 of 9 Answers

guest

  • Jun 12th, 2007
 

Answer:

2 2 2 2 2 2 3 4 5

*c points at c[0] and this pointer never moves in the first loop
In the second loop it prints out the value (type casted) of C[]

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions