Code Snippets C

#include
#include
int main(void)
{
double j = 10.0, k = 0.0;
do {
printf("%f\n", pow(j, k));
k++;
} while(k<11.0);
return 0;
}