डाल्टन ने द्रव्य के अविनाशिता के नियम का संज्ञान लेते हुए परमाणु को किस प्रकार परिभाषित किया ? इस सिद्धांत के अनुसार परमाणु में कितनी विशेषताएं होती हैं ?
What will be the output of the following C++ code?
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
int main()
{
string s = "spaces in text";
s.erase(remove(s.begin(), s.end(), ' ' ), s.end() ) ;
cout << s << endl;
}