fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char a[32] = " 123 456";
  5. char b[32] = {} , c[32] = {};
  6. int length = 8;
  7. for(char *x=&a[1];x<&a[length];x++){
  8. printf("%c" , *x);
  9. }
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
123 456