fork download
  1. #include<stdio.h>
  2. int main()
  3. {
  4.  
  5. int i;
  6. int k;
  7. i=7;
  8. while (i<=8)
  9. {
  10. for(k=0;k<16;k++)
  11. {
  12. if(k%2==0 )
  13. printf("\t");
  14. else
  15. printf(" *");
  16. }
  17. i++;
  18. }
  19. return 0;
  20. }
  21.  
  22.  
Success #stdin #stdout 0s 4964KB
stdin
Standard input is empty
stdout
	 *	 *	 *	 *	 *	 *	 *	 *	 *	 *	 *	 *	 *	 *	 *	 *