I am confused with where to put spacebar in code | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 1

I am confused with where to put spacebar in code

For ex- when i use - usingnamespace std it doesn't Run but when i use same text with proper space it runs.

12th Jun 2019, 7:16 AM
Harsh D H A W L E
Harsh D H A W L E - avatar
1 ответ
+ 7
You need to use at least one space between two keywords/identifiers. You can use as many spaces/tabs/new lines as you like, so this: using namespace std; is equivalent to this: using namespace std ;
12th Jun 2019, 7:22 AM
Anna
Anna - avatar