osd-contiki/cpu/stm32w108/e_stdio/src/test-mes.c

45 lines
421 B
C
Raw Normal View History

2010-10-25 11:03:38 +02:00
#define FLOATING
#define PRINT
#define SCANF
int main() {
char ent_char ;
float flottant ;
#ifndef FLOATING
#ifdef PRINT
ent_char='a';
#endif
#ifdef SCANF
scanf("%c" , &ent_char);
#endif
#ifdef PRINT
printf("%c\n", ent_char);
#endif
#else
#ifdef PRINT
flottant = 1.456789;
#endif
#ifdef SCANF
scanf("%f" , &flottant);
#endif
#ifdef PRINT
printf("%f\n", flottant);
#endif
#endif
return 0;
}