an error is coming in running the code given in the lecture
1.unable to open include file climits.h
2.undefined symbol INT_MAX
3.undefined symbol INT_MIN
Lecture of minimum and maximum of numbers
@yutikakhanna INT_MIN and INT_MAX will work if you give the correct header file for it which is #include Please check if your header files are correct. Compare it with the code given in the lecture video.
You can also use
#include<bits/stdc++.h>
using namespace std;
This will include all the header files required.