Etiket arşivi: continue

continue

1.6.7 continue The continue statement can only appear in a loop body. It causes the rest of the statement body in the loop to be skipped. Syntax: continue; Examples: for(loop=0;loop<100;loop++) { if(loop==50) continue; printf(“%i\n”,loop); } The numbers 0 through 99 … Okumaya devam et

Şartlar kategorisine gönderildi | , , , , , , , , , , , , , , , , , , ile etiketlendi | Yorum bırakın