fork download
  1. void printRectangle(int a, int b) {
  2.  
  3. for(int i=0;i<a;i++)
  4. {
  5. for(int j=0;j<b;j++)
  6. {
  7. printf("*");
  8. }
  9. printf("\n");
  10. }
  11. return ;
  12. }
  13. int main()
  14. {
  15. printRectangle(5,7);
  16. }
Success #stdin #stdout 0s 4392KB
stdin
Standard input is empty
stdout
*******
*******
*******
*******
*******