fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char c[]= "AMAZON2013";
  5. char *p=c;
  6. printf("%s", p+p[4]-p[7]);
  7. }
  8.  
Success #stdin #stdout 0s 2152KB
stdin
AMAZON2013
stdout
Standard output is empty