@@ -0,0 +1,17 @@
/* Beispiel für logische Verknüpfung */
/* logoder.c */
#include <stdio.h>
#include <stdlib.h>
int main ()
{
int c;
c = getchar();
if (c == 'q' || c == 'Q')
exit (1);
return 0;
}
The note is not visible to the blocked user.