What is wrong with this code,DSA Learning Series Life, the Universe, and Everything Problem Code

#include
using namespace std;

int main() {
int var;
cin>>var;
while(var!=42)
{
cout<<var;
cin>>var;
}
return 0;
}

No newline character

1 Like