#include<bits/stdc++.h> cannot work

Answered

my #include<bits/stdc++.h> cannot work is not working .always show error .i am new here so can anyone help me how to add this in macos

 

0
2 comments

#include <iostream>

#include <bits/stdc++.h>

int main() {
    std::cout << "Hello, World!" << std::endl;
    std::cout << sqrt(25);
    return 0;
}

 

Hello, World!
5
Process finished with exit code 0

 

It is working on my system, it is a trial version. What compiler are you using ?

 

I did not add anything, just the include and the sqrt line. It was just a simple project>new.

0

Hi Hemalhemal787 !

bits/stdc++.h is a non-standard header file of GNU C++ library. So, if you try to compile your code with some compiler other than GCC it might fail; e.g. MSVC does not have this header.

0

Please sign in to leave a comment.