c patterns level 2

/****************************************************************************** Online C Compiler. Code, Compile, Run and Debug C program online. Write your code in this editor and press "Run" button to compile and execute it. *******************************************************************************/ #include <stdio.h> int main() { int i,j,k=1,l=9,tmp; for(i=1,k=1;i<=10;i++,k=k+2,l--){ tmp=l; for(j=1;j<=19;j++){ if(j<=k){ if(j<=i) { ++tmp; ...