0
A snippet: char array[]="abc"; for(i=2;i>=0;i--){ for(j=0;j<=i;j++){ putchar(array[j]); } printf("\n"); }
23rd Apr 2018, 9:47 AM
Twenty-three