Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
~136 People Reached
Favorite Forums
Favorite Tags
c x 3
Member Avatar for cjjack88

Hi, I am trying to read the following information from a text file and save it a binary search tree. The data are: [CODE] Toyota 1.3 Solid 33,235.04 3300.00 Nissan1.3 Solid 38,235.04 3300.00 [/CODE] [CODE]struct Node { char model[50]; char colourType[20]; double price; double deposit; struct Node *parent; struct Node …

Member Avatar for cjjack88
0
86
Member Avatar for eghtedari.amir

I want to know is there a complete divide function in C standard library that retrieves the quotient as a float number. in fact I want the remainder to be zero or be as next to zero as possible. Is there such a function? Thanks,

Member Avatar for Ancient Dragon
0
50