'std' : does not exist or is not a namespace



  • hallo
    ich nutze vc++6.0 und aus irgendwelchen
    gründen will der den namespace std nicht kennen.
    was will dieser sc..compiler von mir ???

    #include "stdafx.h"
    #include <iostream.h>
    #include <string.h>

    using namespace std;

    int main(int argc, char* argv[])
    {
    return 0;
    }
    ---
    error C2871: 'std' : does not exist or is not a namespace



  • du benutzt ja auch die veralteten Header

    #include <iostream>
    #include <cstring>
    

Anmelden zum Antworten