Files
clearn/logoder.c

18 lines
187 B
C
Raw Permalink Normal View History

2017-02-07 20:03:49 +00:00
/* 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;
}