โช Choose the correct option.
What is the output of the following C Program?
#include
void main()
{
for (i =1,j = 10; i < 6; ++i, - -j)
printf("%d%d", i,j);
}
#include
void main()
{
for (i =1,j = 10; i < 6; ++i, - -j)
printf("%d%d", i,j);
}