18 lines
187 B
C
18 lines
187 B
C
|
|
/* Beispiel f<>r logische Verkn<6B>pfung */
|
|||
|
|
/* logoder.c */
|
|||
|
|
|
|||
|
|
#include <stdio.h>
|
|||
|
|
#include <stdlib.h>
|
|||
|
|
|
|||
|
|
int main ()
|
|||
|
|
{
|
|||
|
|
int c;
|
|||
|
|
|
|||
|
|
c = getchar();
|
|||
|
|
|
|||
|
|
if (c == 'q' || c == 'Q')
|
|||
|
|
exit (1);
|
|||
|
|
|
|||
|
|
return 0;
|
|||
|
|
}
|