Всякий раз, когда я пытаюсь запустить свой код, эта ошибка "gtkmm / button.h такой файл или каталог не появляется" появляется в консоли, я не знаю, что это за ошибка, и эта страница также появляется каждый раз. Это мой код
#include<iostream>
#include<conio.h>
using namespace std;
class bubble{
private:
arr[5];
public:
void getdata();
void sort();
void display();
};
void bubble::getdata(){
int i;
for(i=0;i<=4;i++)
{
cout<<"enter the element in the array";
cin>>""<<arr[i];
}
}
void bubble::sort(){
int i,j,temp;
for(i=1;i<=4;i++)
{
for(j=0;j<=4;j++)
{
temp=arr[j];
arr[j]=arr[j+1];
arr[j+1]=temp;
}
}
}
void bubble::display(){
int i;
for(i=0;i<=4;i++)
{
cout<<"after sorting the array intto bubble sort: "<<arr[i];
}
}
int main(){
bubble b;
b.getdata();
b.sort();
b.display();
getch();
return 0;
}