Hi:
I need some assistance in this code. I am trying to get this format.
1
.2
..3
...4
and so on.. i dont get any errors in the code but i get no o/p eitehr
#include<iostream.h>
int main()
{
int i;
cout.fill('.');
for(i=i;i<10;++i)
{
cout.width(i);
cout.fill('.');
cout<<i;
}}