Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
6
Posts with Downvotes
2
Downvoting Members
5
1 Commented Post
0 Endorsements
~1K People Reached
Favorite Forums
Favorite Tags
c x 7
c++ x 7
Member Avatar for chess2009

[CODE] Str Str:: operator+(const Str & append) const { unsigned i,j; for(i=0,j=0 ; i<append.used; i++ ,j++) temp[i]=append.data[j]; for(j=0 ; i<used; i++, j++) temp[i]=data[j]; temp[i]='\0'; } [/CODE] used and append.used are the length of strigs. and data is pointer to array. Hi I am trying to concatenate two strings in the …

Member Avatar for jonsca
0
112
Member Avatar for chess2009

Hi When you ask for a person to write what code he/she has written and then ask questions based on his/her code other people can simply copy and paste his code. That is called COPYRIGHT. so you should person to delete his/her code , I asked for you to delete …

Member Avatar for Ezzaral
0
367
Member Avatar for chess2009

Hi I would like to delete my "getchar putchar post" because I really wanna do that .How can I do that? thanks.

Member Avatar for crunchie
0
132
Member Avatar for chess2009

I would like to write a program with getchar and putchar that read my input and prints one word per line and ignores all semicolon, comma , dot , newline, tab and space. Here is my input: "The Parsnip The parnip, children, I repeat, Is simply an anemic beet. Some …

Member Avatar for WaltP
0
429
Member Avatar for chess2009

Here is my code, I would like to check my input for errors in the first and lastname parts. it means that these two parts should contin just upper and lower case letter and hyphens(cin must be used as well). [CODE] #include <iostream> #include <string> #include<cstdlib> using namespace std; struct …

Member Avatar for jonsca
0
145
Member Avatar for chess2009

Could you please help why my program goes through do while loop just once, although the condition is true. //Program is getting numbers from user and realize whether they are correct numbers for triangle side or not and if tey find out the area// [CODE] #include<stdio.h> #include<math.h> double TraingleArea(); int …

Member Avatar for Adak
0
130