Most common hidden characters:
character | key combination |
---|---|
{ | Atl-( |
} | Alt-) |
[ | Alt-Shift-( |
] | Alt-Shift-) |
~ | Alt-n-space |
| | Alt-Shift-L |
button 2 | Control-click |
button 3 | Apple-click |
\ | Alt-Shift-/` |
$> myExecutable.exe
zsh: command not found: myExecutable.exe
The simplest is to designate the executable by its relative path:
$> ./monExecutable.exe
where ”.” means the current directory.
Using istringstream :
#include <sstream>
int main()
{
std::istringstream is( "1" );
int nombre;
is >> nombre;
return 0;
}
Using ostringstream :
#include <sstream>
int main()
{
std::ostringstream os;
os << 1;
std::string nbre_str = os.str();
return 0;
}
By using the method c_str() . For example:
#include <string>
int main ()
{
std::string filename = "../data/formes.txt";
std::ifstream f
f.open( filename.c_str() );
...
return 0;
}
For more informations, see cmt help
brings up the modifications from the repository PATH into the local directory.
Warning
Every single svn update must follow an svn status to check the state of our directory with regard to the repository.
adds the file(s) or directory PATH to the repository.
Warning
Every single svn add must follow an svn commit so the repository is up-to-date.
sends over to the repository all the local modifications applied to the directory (or file) PATH.
Warning
Every single svn commit must follow an svn status to check the state of our local copy with regard to the repository.
For more informations, see svn help