C_dumping-ground/modfloat.c
2022-04-09 15:05:23 -04:00

8 lines
141 B
C

#include <stdio.h> //printf and shit
float x = 2.0;
float modded;
int main(){
printf("asd %f", x);
modded = x % 2.0;
return 0;
}