Tuesday, March 5, 2024

12. Print : 0 10 20 30 ... 100 :—

 


12. Print : 0 10 20 30 ... 100 :—


#include<stdio.h>

int main()

{

    int i;

    for(i=0;i<=100;i+=10)

    {

        printf("%d ",i);

    }

    return 0;

}


No comments:

Post a Comment