I just want to ask your help here. I am new beginner in c++ programming. How to print out the even number in range 100 - 200. I tried write some code and it didn't work out. Here is my code. I hope, someone here can help me. Will appreciate that so much. Thanks.
include <stdio.h>
void main()
{
    int i;
    for (i= 100; i<= 200; i += 2){
        print i;
    }
}
 
     
     
     
     
     
     
    