-
Notifications
You must be signed in to change notification settings - Fork 17
Missing symbol in translation unit? #77
Copy link
Copy link
Open
Labels
bugSomething isn't workingSomething isn't working
Description
When compiling this example, it seems that the symbol for operator>>(..., string&) is missing.
// https://www.geeksforgeeks.org/cpp/input-in-cpp/
#include <iostream>
using namespace std;
int main() {
int age;
cin >> age;
string name;
// Take multiple input using cin
cin >> name;
// Print output
cout << "Name : " << name << endl;
cout << "Age : " << age << endl;
return 0;
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working