CLICKHERE's blog

By CLICKHERE, history, 4 years ago, In English
  • Vote: I like it
  • +1
  • Vote: I do not like it

By CLICKHERE, 4 years ago, In English
#include <bits/stdc++.h>
using namespace std;

class a{
	public:
	vector<int> v;
	a(){
		v = {1,2,3};
	}
	bool cmp(const int &a, const int &b){
		return (a < b);
	}
	void fun(){
		sort(v.begin(), v.end(), cmp);
		for(auto x :v ) {
			cout << x;
		}
	}
};

int main() {
	a b;
	b.fun();
}

why it is giving error at sort(v.begin(), v.end(), cmp); ?

Full text and comments »

  • Vote: I like it
  • +9
  • Vote: I do not like it

By CLICKHERE, history, 4 years ago, In English
#include <bits/stdc++.h>
using namespace std;

class a{
public:
	vector<int> arr(5);
};

int main() {
 a b;
}

why it is giving error at vector<int> arr(5);

Full text and comments »

  • Vote: I like it
  • +2
  • Vote: I do not like it