0
How can I use function in c++ and header file like <iostream.h> and <math.h>
It's not working properly
3 Answers
+ 3
There is no header file 'iostream.h'. It's just 'iostream' (without the '.h'). Also, use 'cmath' instead of 'math.h' (math.h will also work though)
+ 1
Thanks đ