//Print 2's table using do while
#include<stdio.h>
int main()
{
int i=2,j=1;
do
{
printf("%d ",i*j);
j++;
}while(j<=10);

return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: