Subversion Repositories Kolibri OS

Rev

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

  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5.    char Buf[100];
  6.    int Count;
  7.  
  8.    for (Count = 1; Count <= 20; Count++)
  9.    {
  10.       sprintf(Buf, "->%02d<-\n", Count);
  11.       printf("%s", Buf);
  12.    }
  13.  
  14.    return 0;
  15. }
  16.  
  17. /* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/
  18.