fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int i;
  6. unsigned char tab[20]={0,1,2,3,4,0,1,2,3,4,0,1,2,3,4,0,1,2,3,4};
  7. unsigned short *wsk=tab;
  8.  
  9. printf("%d\n",(unsigned char)*wsk);
  10. wsk+=2;
  11. wsk-=1;
  12. printf("%d\n",(unsigned char)*wsk);
  13. }
Success #stdin #stdout 0s 9416KB
stdin
Standard input is empty
stdout
0
2