fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char* someOtherString = "Blah";
  5.  
  6. while (*someOtherString) {
  7. printf("%d\n",someOtherString);
  8. ++someOtherString;
  9. }
  10.  
  11. return 0;
  12. }
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
134513984
134513985
134513986
134513987