Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~773 People Reached
Favorite Forums
Favorite Tags
c++ x 3

3 Posted Topics

Member Avatar for g_u_e_s_t
Member Avatar for rubberman
-1
512
Member Avatar for g_u_e_s_t

How can I go about concatenating two arrays of char(ex. char boy[] and char girl[]) so that the contents of girl is attached to the contents of boy?

Member Avatar for Ancient Dragon
0
135
Member Avatar for g_u_e_s_t

Can someone explain how to get this output? How do I trace this? Output: * ** *** **** ***** ****** ******* [CODE]#include <iostream> using namespace std; void Triangle(int x) { if (x <= 0) return; Triangle(x - 1); for (int i = 1; i <= x; i++) cout << "*"; …

Member Avatar for chrjs
0
126

The End.