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.

0 Endorsements
~95 People Reached
Favorite Forums
Favorite Tags
c++ x 1
Member Avatar for fand2nd

Can someone pls explain to me this program is not running [CODE]#include <iostream> using namespace std; void writeBackward(string s, int size) // function definition { //opening brace if ( size > 0) { // opening brace for the condi cout<<s.substr((size-1), 1); //display the last chracter writeBackward(s, (size-1)); //display remaining characters …

Member Avatar for vinayakgarg
0
95