mirror of
https://github.com/renbaoshuo/202401-programming-assignments.git
synced 2024-12-16 15:44:39 +00:00
5 lines
113 B
C
5 lines
113 B
C
|
void splitfloat(float x, int *intpart, float *fracpart) {
|
||
|
*intpart = (int)x;
|
||
|
*fracpart = x - *intpart;
|
||
|
}
|