Skip to content

Commit

Permalink
10 | 2 | sharafat
Browse files Browse the repository at this point in the history
  • Loading branch information
SharafatKarim committed Aug 4, 2023
1 parent 994b9f0 commit af6ddec
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions solutions/sharafat/10/2.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#include <stdio.h>

void space(int x) {
for (int i = 0; i < x; i++) {
printf(" ");
}
}

int main() {
printf("123");
space(3);
printf("456\n");
return 0;
}

0 comments on commit af6ddec

Please sign in to comment.