Top "Output" questions

The externally observable consequences of calling a program on some input

Scanning multiple lines using single scanner object

I a newbie to java so please don't rate down if this sounds absolute dumb to you ok how do …

java input output java.util.scanner
Static (Lexical) Scoping vs Dynamic Scoping (Pseudocode)

Program A() { x, y, z: integer; procedure B() { y: integer; y=0; x=z+1; z=y+2; } procedure C() { z: integer; procedure …

scope output pseudocode
Java: println with char array gives gibberish

Here's the problem. This code: String a = "0000"; System.out.println(a); char[] b = a.toCharArray(); System.out.println(b); returns 0000 0000 …

java arrays char output
C/C++ printf() before scanf() issue

I'm using Eclipse to code in C/C++ and I'm struggling with what might be something pretty easy. In my …

c printf output scanf
Don't display pushd/popd stack across several bash scripts (quiet pushd/popd)

Each time I use pushd or popd, it print the stack to standard output. How not to do so? I …

bash output built-in
How to output smooth cspline curve as a data file

Does anybody know how to extract some data of smooth cspline curve for a given data? For instance, there is …

output gnuplot smooth
Printing to a file in C

How do I print to an empty .txt file I already have created? I already print the results to the …

c text-files output binary-search-tree
How to display progress of scipy.optimize function?

I use scipy.optimize to minimize a function of 12 arguments. I started the optimization a while ago and still waiting …

python numpy scipy output mathematical-optimization
list output truncated - How to expand listed variables with str() in R

I have a data.frame df with 600+ variables. I'm writing a function that automates the creation of columns and need …

r dataframe output truncated
Suppress output from non-PowerShell commands?

I am running a command hg st and then checking it's $LASTEXITCODE to check for availability of mercurial in the …

powershell output