fork download
  1. #include <stdio.h>
  2. #define VAL 32
  3.  
  4. int main()
  5. {
  6. char arr[] = "geeksquiz";
  7. *(arr + 0) &= ~VAL;
  8. *(arr + 5) &= ~VAL;
  9. printf("%s", arr);
  10.  
  11. return 0;
  12. }
Success #stdin #stdout 0.01s 5296KB
stdin
Standard input is empty
stdout
GeeksQuiz