CSIAS
  • Blog
  • Contact
  • Login

Tag: do while loop

How to use do while loop in c language

Posted on May 29, 2023May 29, 2023 by Ajaj Khan

program to use do while loop in c language


#include<stdio.h>
int main()
{
    int i=1;
    do
    {
        printf("%d\t",i);
        i=i+1;
    }while (i<=10);
    printf("\n");
    return 0;
    
}

output


1       2       3       4       5       6       7       8       9       10
Posted in C LanguageTagged do while loopLeave a Comment on How to use do while loop in c language

Recent Posts

  • How to use JavaScript Array keys()
  • How to use JavaScript Array lastIndexOf()
  • How to use JavaScript Array fill()
  • How to use JavaScript Array indexOf()
  • ASCII TABLE IN LOWERCASE IN JAVASCRIPT

Recent Comments

    Archives

    • July 2023
    • June 2023
    • May 2023
    • July 2021
    • February 2021
    • January 2021
    • December 2020
    • October 2020
    • June 2020
    • March 2020
    • January 2020
    • November 2019

    Categories

    • ….
    • Bagging
    • Boosting
    • C Language
    • C Programming
    • Classification
    • Clustering
    • Decision Tree
    • Downloads
    • Ensemble Technique
    • How To
    • Java
    • JavaScript
    • linear regression
    • Logistic Regression
    • Machine Learning
    • News
    • Optimization
    • Random Forest
    • Regression
    • Schema.org
    • Stacking
    • Unsupervised Learning
    • WordPress

    Meta

    • Log in
    • Entries feed
    • Comments feed
    • WordPress.org
    Proudly powered by WordPress | Theme: csias by Fahim Akhtar.