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 #107.69K
~231 People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums
Favorite Tags
c++ x 1
1 Posted Topic
Re: conversion type
two approaches that i can think of: (1) float num1, num2, result; float Mod() { float result; result = (float) ( (int) num1 % (int) num2 ); return result; } (2) use fmod() check the use of it on mdsn.microsoft.com
The End.