Печать 0 1 2 3 4 в C, пока петля

int k=0;

while (k <= 5)
{
    printf("%d", k);
    k = k + 1;
}
Condemned Cormorant