Zilog ZUSBOPTS Bedienungsanleitung Seite 450

  • Herunterladen
  • Zu meinen Handbüchern hinzufügen
  • Drucken
  • Seite
    / 520
  • Inhaltsverzeichnis
  • FEHLERBEHEBUNG
  • LESEZEICHEN
  • Bewertet. / 5. Basierend auf Kundenbewertungen
Seitenansicht 449
Standard Functions UM017105-0511
422
Zilog Developer Studio II – ZNEO™
User Manual
ispunct
Tests for any printing character except space (' ') or a character for which isalnum is true.
Synopsis
#include <ctype.h>
int ispunct(int c);
Example
int r;
char c='a';
r=ispunct(c);
isspace
Tests for the following white-space characters: space (' '), form feed ('\f'), new line ('\n'),
carriage return ('\r'), horizontal tab ('\t'), or vertical tab ('\v').
Synopsis
#include <ctype.h>
int isspace(int c);
Example
int r;
char c='';
r=isspace(c);
isupper
Tests for any uppercase letter 'A' to 'Z'.
Synopsis
#include <ctype.h>
int isupper(int c);
Example
int r;
char c='a';
r=isupper(c);
Seitenansicht 449
1 2 ... 445 446 447 448 449 450 451 452 453 454 455 ... 519 520

Kommentare zu diesen Handbüchern

Keine Kommentare