Digg StumbleUpon LinkedIn YouTube Flickr Facebook Twitter RSS Reset

iswlower(): teste si son argument est une lettre minuscule


Download

 
#include <stdio.h>
#include <wctype.h>
 
int main(void)
{
   int wc;
 
   for (wc=0; wc <= 128; wc++) {
      printf("%3d", wc);//Le code du caractère
      printf(" %5c ", wc);
	  //Cochoer les lettres Minuscule
      printf("%2s", iswlower(wc)  ? "X"  : "-");
 
      putchar('n');
   }
   return 0;
}
----------------------------------------------------------------------------

No comments yet.

Leave a Comment