test_mes.c

00001 
00002 #define FLOATING
00003 #define PRINT
00004 #define SCANF
00005 
00006 
00007 int main() {
00008 
00009 char ent_char           ;
00010 float flottant          ;
00011 
00012 #ifndef FLOATING
00013 #ifdef PRINT
00014  ent_char='a';
00015 #endif
00016 
00017 #ifdef SCANF
00018   scanf("%c" , &ent_char);
00019 #endif
00020 
00021 #ifdef PRINT
00022   printf("%c\n", ent_char);
00023 #endif
00024 
00025 
00026 
00027 #else
00028  #ifdef PRINT
00029  flottant = 1.456789;
00030 #endif
00031 
00032 #ifdef SCANF
00033   scanf("%f" , &flottant);
00034 #endif
00035 
00036 #ifdef PRINT
00037   printf("%f\n", flottant);
00038 #endif
00039 
00040 #endif
00041   return 0;
00042 
00043  }
00044 

Generated on Mon Apr 11 14:23:40 2011 for Contiki 2.5 by  doxygen 1.6.1