โช Choose the correct option.
#include
int main() {
int i=1;
while() {
printf("%d ", i++);
if(i>10){
break;
}
}
return 0;
}
#include
int main() {
int i=1;
while() {
printf("%d ", i++);
if(i>10){
break;
}
}
return 0;
}