Mam problem z kodem, ciągle wyskakuje mi błąd 'd11' was not declared in this scope w 11 linijce. niewiem jak to naprawić. pomoże ktoś
#include <iostream>
#include <string>
using namespace std;
int main()
{
int i,d11,d12;
}
bool teskty_sa_identyczne(string t1, string t2)
{
int i; dl1, dl2;
i = 0;
dl1 = t1.length();
dl2 = t2.length();
while(i < dl1 && i < dl2 && t1[i] == t2[i])
i++;
return i == dl1 && i == dl2;
}