answersLogoWhite

0

To specify the return-type of the function.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

How do you enter integer in python?

In Python, you can enter an integer using the input() function, which captures user input as a string. To convert this string to an integer, you can use the int() function. For example: user_input = input("Enter an integer: ") integer_value = int(user_input) This will convert the input string to an integer, assuming the user enters a valid integer.


What is rounding in Visual Basic?

Rounding in Visual Basic is the method of rounding an integer up, or flooring an integer, which is rounding down. To round up, you use the System.Math.Round function. To round down, or floor, you use the System.Math.Floor function.


How can you use the rand5() function to create a rand7() function that generates a random integer between 0 and 7?

To create a rand7() function using the rand5() function, you can call the rand5() function twice and combine the results to generate a random integer between 0 and 7.


How do you decide which integer type to use in c language?

By the range of values you wish to represent.


When you can use percent D in c language?

To define any integer type value.


What is the use of c plus plus function atoi?

Converts a character to integer (if it is a numeric character)


Wrie a program to receive an integer and find its octal equivalant?

Use %o


Why we use function prototyping in c language?

You could just define the whole function before it is called, like this:void do_nothing(){}main(){do_nothing();}but if you define the function after it is called, the compiler will arrive at the function's calling before its actual definition. If you prototype your function earlier in the code than the function's call, the compiler will look for the function first.Hope I was able to help.


What function is used to perform exponentiation in C language?

You can use the pow() function in math.h.


When graphing a linear function with a fraction as the coefficient of x what values should you use for x to ensure your y coordinate is an integer?

You should use multiples of the denominator of the [slope] coefficient.That assumes, of course, that the y-intercept is an integer.


Is 0.48 an integer?

No, integers are whole numbers including 0. '.48' is a real number and would round down to zero, or up to 1, depending on the function you use, either of which is an integer.


Why you use else function in c language?

You cannot have a function named else, because it is a reserved word.