Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main()
  5. {
  6.    char a[10];
  7.    strcpy(a, "abcdef");
  8.    printf("%s\n", &a[1]);
  9.  
  10.    return 0;
  11. }
  12.  
  13. /* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/
  14.