- Messages
- 793
- Likes
- 2,504
C:
#include <stdio.h>
#include <stdlib.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char *argv[]) {
int sayici;
for (sayici=1;sayici<=10; sayici++)
{
if(sayici==5)
continue;
printf("%d",sayici);
}
printf("\ncontinue, 5 degerini atlaması icin kullanildi.\n",sayici);
return 0;
}
Last edited by a moderator: