Chapter4
This commit is contained in:
11
DeitelC/Chapter4/trianglePrinting.c
Normal file
11
DeitelC/Chapter4/trianglePrinting.c
Normal file
@ -0,0 +1,11 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main(void) {
|
||||
int start = 10;
|
||||
for(int i = 1; i <= start; i++) {
|
||||
for(int j = 0; j <= i; j++){
|
||||
printf("%s", "*");
|
||||
}
|
||||
}
|
||||
printf("\n");
|
||||
}
|
Reference in New Issue
Block a user