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
~238 People Reached
Favorite Forums
Favorite Tags
c++ x 3

2 Posted Topics

Member Avatar for BryantFury

As said above, ticket is an integer. The compiler lets you compile it, because 'A', 'B', 'C' means basically the same as 65, 66, 67 - it's from ascii table (look it up). Each character from this table has an integer assigned. So if write 65, it writes back "cost …

Member Avatar for Tom83B
0
117
Member Avatar for Tom83B

Hi all! This is from my code: [CODE]struct R3 { float x; float y; float z; R3(float, float, float); R3(); }; R3::R3(float a, float b, float c) { x = a; y = b; z = c; } R3::R3() { x = 0; y = 0; z = 0; } …

Member Avatar for Tom83B
0
121

The End.