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
Ranked #55.0K
2 Posted Topics
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 …
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; } …
The End.
Tom83B