单项选择题

下面程序的运行结果是( )。
#include<stdio.h>
main()
int i;
for(i=1; i<5; i++)
if(i%3==0)
break;
printf("%d", i);

A) 123
B) 12
C) 23
D) 12345