In most cases it means either error or end-of-file.
void as function return-type means no return value void as function parameter means no parameter void * as pointer type means generic pointer
\r means Carriage Return, which means: return the cursor to the beginning of the line in more simple words we can say that it's deleting each character from the active position upto the beginning.
In C++ EOF is a special function which will return nonzero when there is no more data to be read. In C++ nonzero means true, the alternative to nonzero is zero which means false.
void simply means you don't have anything to return w/in a function, it is the same as return 0; public void sample() { MessageBox.Show("This Function do not return anything"); }
The normal exit of program is represented by zero return value. If the code has errors, fault etc., it will be terminated by non-zero value. In C++ language, the main() function can be left without return value. By default, it will return zero. To learn more about data science please visit- Learnbay.co
The value. In some context 1 means 'yes', 0 means 'no'. In other contexts 0 means ok, other values are error codes.
return; return -1; return NULL;
It is up to you to decide. You may go for 'void' return type, which means no return value.
void as function return-type means no return value void as function parameter means no parameter void * as pointer type means generic pointer
\r means Carriage Return, which means: return the cursor to the beginning of the line in more simple words we can say that it's deleting each character from the active position upto the beginning.
#include #include void main(){int i;for(i=1;i
a b means return true if the value of a is equal to the value of b, otherwise return false. a = b means assign the value of b to the variable a.
1 c of sugar means 1 cup of sugar
determine an insurers internal rate of return
determine an insurers internal rate of return
In C++ EOF is a special function which will return nonzero when there is no more data to be read. In C++ nonzero means true, the alternative to nonzero is zero which means false.
void simply means you don't have anything to return w/in a function, it is the same as return 0; public void sample() { MessageBox.Show("This Function do not return anything"); }