answersLogoWhite

0

There is no such error in C++. 'No input files' suggests you are trying to run a program that processes input files but you haven't specified which files to process. But without knowing what program you are running, it's difficult to suggest a solution other than to consult the program's documentation regarding the command-line syntax.

A well-written program will automatically present the correct command-line syntax when invoked incorrectly, or will at least provide a more-meaningful error message including an error code.

When asking about program errors, it is helpful to include the exact command you executed, including any relevant information such as the program name, author and version, as well as the specific platform you executed the program upon. The more information you provide the easier it is to find a solution.

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

What are file modes in c plus plus?

I guess you mean either input/output/inout/append or binary/text.


What is file handling in c and c plus plus or objective c?

File handling is simply the process of opening, reading, writing and closing files. Files are simply streams for input and output, or the "serialisation" of objects. In other words, reading and writing data to and from disk storage.


What is a zero error in an instrument?

A zero error in an instrument occurs when the instrument does not read zero when there is no input or measurement applied to it. This can lead to inaccuracies in measurements as the instrument's zero point is not aligned correctly. Zero errors need to be corrected to ensure accurate readings.


How do you alternate the input numbers using for loop in c plus plus?

Input a variable.


What is compilation in c plus plus?

Compilation is the process of translating source files into object files.


What is the header for basic input or output in C Plus Plus?

For basic input and output in C++: #include


How do you get death error on casio fx-96sg plus?

The "DEATH" error on the Casio fx-96SG Plus typically indicates that the calculator has encountered a calculation that exceeds its limits, such as trying to divide by zero or performing an operation with invalid input. To resolve this error, check your calculations for errors or invalid operations, and ensure you're using the correct syntax. If the error persists, resetting the calculator may help clear any temporary issues.


C plus plus code to read the data from any file?

The following function will read any valid file name one byte at a time. int read_file(char* filename) { FILE* input=fopen( filename,"rb" ); if( !input ) { std::cerr<<"File access error: "<<filename<<std::endl; return( -1 ); } char ch; while( fread( &ch, 1, 1, input )==1 ) { // process the byte... } fclose( input ); return( 0 ); }


How do you clear input buffer in c plus plus?

cin.clear();


How do you solve error c plus plus ntvdm CPU illegal?

Use the debugger to locate the error.


What are the basic input and output of c and c plus plus?

That is STANDARD input and STANDARD output. By default, standard input is the keyboard, and standard output is the screen. Standard I/O is set by the operating system, though it may be redirected by script invocation or system commands within the C/C++ program itself. You could, for instance, set standard output to a printer or a file in lieu of a screen. You should also Google Standard Error.


When you install visual c plus plus 2008 express edition it says an error?

Use the Microsoft support website to locate the error message and the solution to the error.