What is output void main() { int n=3, a=2; a*= n+1; printf("%d", a); }?
Answers
Answered by
0
Answer:
The output of the code fragment is
6
Similar questions