/*
 affiche la valeur d'une variable float
 */ 


#include <stdio.h> //header

int main() {
  char c = 'h';
  printf("c= %c\n", c);
  return(0);
}
