can someone give me a detailed explaination why this won't compile, thanks`
#include <iostream>
using namespace std;
int main () {
int num1 = 5, num2 = 10;
if (num1 < num2) {
cout<<”num1 is less than num2”;
else cout<<”num1 is not less than num2”;
}
return 0;
}