fork download
  1. #include <stdio.h>
  2.  
  3.  
  4. int i;
  5. int main(void) {
  6. char*x = "ab";
  7.  
  8. for(i=0;i<3;i++){
  9.  
  10. printf(" %d ",x[i]);
  11. }
  12.  
  13. }
  14.  
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
 97  98  0