| 2 | using namespace std; |
| 3 | |
| 4 | int main(){ |
| 5 | int i = 0; //in while & do while loop you must initialize a variable before hand |
| 6 | |
| 7 | while (i<10){ |
| 8 | cout<<"hello code in 10 fam"<<endl; |
| 9 | i+=2; //this is a short form for writing i=i+2 |
| 10 | } |
| 11 | } |
nothing calls this directly
no outgoing calls
no test coverage detected