C: Exemple de création d’un bloc

Author:


Download


#include 

int main(void)
{
  int x;

  // début du bloc
  {
     x = 20;
     printf("x=%d", x);
  }
  // Fin du bloc

  return 0;
}

Leave a Reply

Your email address will not be published. Required fields are marked *