Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. /*
  2.  * Copyright (C) 2014 by ARM Ltd. All rights reserved.
  3.  *
  4.  * Permission to use, copy, modify, and distribute this software
  5.  * is freely granted, provided that this notice is preserved.
  6.  */
  7.  
  8. #include <stdio.h>
  9. #include <stdlib.h>
  10.  
  11. const char m[8] = {'M','M','M','M','M','M','M','M'};
  12.  
  13. int main()
  14. {
  15.   printf ("%.*s\n", 8, m);  // must print MMMMMMMM
  16.  
  17. printf("%s finished\n", __FILE__);
  18.  
  19.   exit (0);
  20. }