Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+4
Strength to Decrease Rep
-1
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
~808 People Reached
Favorite Forums
Favorite Tags
c++ x 26
Member Avatar for ademsaykin

Dear AncientDragon I have been learning c++ for two months only. Now,I am trying to understand pointers in c++.Your advise always be helpful to me. As far I understand a pointer is an address.As an example p1(pointer1) has this {x1,y1} address.So Pointer2 has {x2,y2}. There should be three different files …

Member Avatar for Ancient Dragon
0
88
Member Avatar for ademsaykin

Dear Sirs Here I am again!. I need to write a function by using signature below. void suffix(int n, char suff[]); And I need to use following declarations: char s[5]; int x; the result of a call should be : suffix(x,s); will return an appropriate string in s for any …

Member Avatar for ArkM
0
128
Member Avatar for ademsaykin

[code] #include <iostream> using namespace std; struct Mytime { int hours; int mins; }; int timecmp( Mytime t1, Mytime t2 ) // compares two Mytime values { if (t1.hours == t2.hours) { if (t1.mins == t2.mins) { return 0; // returns 0 if times are same } else // mins …

Member Avatar for Murtan
0
176
Member Avatar for ademsaykin

Dear All Although my tutor said that it takes 25 minus, I have been trying to understand for more than a week that how to do my task. I have done something as you said before in terms of "putting at least some efforts". Please see the codes below and …

Member Avatar for ademsaykin
0
295
Member Avatar for ademsaykin

I am studying a Software Engineering Degree Course in London.I am very keen to learn C++ One of my Units named Programming Methodology and we have been given a coursework during xmas holiday. I have been trying to sort it out by using internet sources but I am struggling. Our …

Member Avatar for VernonDozier
0
121