fork(5) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char c = 'a';
  5. c &= ~' ';
  6. printf("%c", c);
  7. }
  8.  
Success #stdin #stdout 0s 2112KB
stdin
Standard input is empty
stdout
A