Site icon C Dersleri

C ile skipLines kullanımı

void skipLines(int n) {
for (int h = 1; h <= n; h++)
 printf("\n");
}

Exit mobile version