Determine Output:
void main() { int c[] = {2.8,3.4,4,6.7,5}; int j, *p=c, *q=c; for(j=0;j<5;j++){ printf(" %d ", *c); ++q; } for(j=0;j<5;j++){ printf(" %d ", *p); ++p; } }
A.2 3 4 6 5 2 3 4 6 5
B.2.8 3.4 4 6.7 5 2.8 3.4 4 6.7
C.2.8 2.8 2.8 2.8 2.8 2.8 3.4 4
D.2 2 2 2 2 2 3 4 6 5
Answers
Answered by
1
Hii dear here is your answer
option b is the correct answer
Hope it's help u
option b is the correct answer
Hope it's help u
Answered by
23
B. 2.8 3.4 4 6.7 5 2.8 3.4 4 6.7
Hope it helps u
Hope it helps u
Similar questions
Hindi,
7 months ago
Chemistry,
7 months ago
Computer Science,
1 year ago
Computer Science,
1 year ago
Math,
1 year ago
Math,
1 year ago