box-o-sand/oldstuff/PracticingC/gowrikumar/src/02-dowhile.c

21 lines
225 B
C
Raw Normal View History

/**
* :author: Dan Buch (daniel.buch@gmail.com)
*/
#include <stdio.h>
int main()
{
int i = 1;
do
{
printf("%d\n", i);
} while(++i < 15);
return 0;
}
/* vim:filetype=c:fileencoding=utf-8
*/