python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to place a space at the end of cout
I need to know why c++ doesn't see the space just at the end of cout function.
I'm using CLion and C++ 23 (language_standart)
int main()
{
string Item ;
double Price ;
int Quantity ;
...
user17173632
Votes: 0
Answers: 2
Filesystem c++, geting no output. Avoiding static compiling?
I'm having problems getting any output from the std::filesystem functions in C++, even from the most simple functions like current_path. I'm compiling with mingw64, g++ on Windows, it comes with C++17...
blundered_bishop
Votes: 0
Answers: 0
would clog and cout in c++ behave differently in outputing the value?
I am expecting a similar behavior for Cout and Clog since both are buffered outputs. But when i am trying, it comes out different.
COUT:
int main()
{
cout<<"Hello World" ;
whil...
Sudhakar Palanisamy
Votes: 0
Answers: 1