What is the output of the following code?

#includestdio.h
int main()
{
int k, j;
for(k=2, j=10; k++)
{
printf("%d ", (k+j));
k++;
}

return 0;
}

Posted on by