Computer Science, asked by anushbofrogDeba, 1 year ago

Determine the Output for the Given Program
What is the output for the following program? void main() { int const * p=5; printf("%d",++(*p)); }

Answers

Answered by Samundeeswari
0
output will be 6... because ++(*p) will increment the integer value 5 to 6...
Similar questions