using namespace std;
#include <iostream>
#include <cstring>
struct distance {
    int Kilometer;
    int Meter;
    int Centimeter;
};
distance add() {
}
int main() {
    return 0;
}
Trying to define a function that returns a "distance" data type. I'm getting hit with "distance is ambiguous" when trying to define the function.
 
     
     
    