osd-contiki/cpu/stm32w108/e_stdio/src/test_scanf.c
2011-03-22 19:35:49 +01:00

15 lines
124 B
C

int main() {
float flottant ;
// char c;
scanf("%f" , &flottant);
// scanf("%c",&c);
//while(1);
return 0;
}