Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #define NUMERO_FILAS 10
- #define NUMERO_COLUMNAS 2
- int main(void){
- int fil = NUMERO_FILAS;
- int col = 0;
- while(fil>0){
- while(col++<NUMERO_COLUMNAS )
- printf("#");
- col = 0;
- fil--;
- printf("\n");
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement