#include <vector>
#include <iostream>
#include <cstring>
#include <string.h>
using namespace std;
int main()
{
    vector<string> test;
    test.push_back("yasir");
    test.push_back("javed"); 
    for(int i=0; i!=test.end();i++)
    {
        cout << test[i];
    }
}
Why is this code giving up an error? I am unable to identify the cause of the error. Error: No Match for operator !=....
 
     
     
    