Cetak 0 1 2 3 4 dalam C Sedih Loop

int k=0;

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