do while

 int main()

{
    int i=0;
    do
    {
        printf("%d\n",i);
        i++;
    }while(i<11);
    return 0;
}

Comments

Popular posts from this blog

strings 2

property decorator

Raise keyword in python