Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

~108 People Reached
Favorite Forums
Favorite Tags
c++ x 1
Member Avatar for Neild

I'm a starter in C++. Can someone explain the output of this program ? # include <iostream> using namespace std ; void number ( int a) { if( a < 0 ) return ; else { cout<< a <<" "; number(a - 1); cout<< a << " "; } } …

Member Avatar for triumphost
0
108