fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int i=4;
  5.  
  6. for(int j=1;j<i;j++)
  7. {
  8. for(int k=1;k<j;k++)
  9. {
  10. { printf("@");}
  11. }
  12. printf("\n");
  13. }
  14. return 0;}
  15.  
Success #stdin #stdout 0s 4172KB
stdin
@
stdout
@
@@