print numbers from 1 to 10 with spaces on same line

PHOTO EMBED

Mon Oct 30 2023 10:47:51 GMT+0000 (Coordinated Universal Time)

Saved by @usman_hamed

#include<stdio.h>
int main()
{
    int count=0;
    while(count<=10){
        printf("%d",count);
        printf("   ");
        count++;
    }
    
}
content_copyCOPY