Error please checkASAP

Please check

hi @rssrivastavarohan there are several mistakes with your code.

  1. It should be #include<bits/stdc++.h>
  2. The way you have taken input for vector, it will go into an infinite loop. Just intialise the vectors with size 4 and take input for 4 indices like cin >> v1[i];
  3. cout<<isRectangleOverlap; You are not calling the function, correct way is cout<<isRectangleOverlap(v1, v2);