0
What's wrong with this code?
#include <iostream> #include <cstdlid> using namespace std; int main () { for (int x=1; x <=11; x++) { cout << rand() << endl; } }
3 Answers
0
#include <cstdlid> should be #include <cstdlib>
the last letter should be a b
0
Thanks!
- 1
in 2nd header file, the last letter should be 'b'....
and you should also write return function....because you used Int type in main function.



