answersLogoWhite

0

The word "sleeping" functions as a verb in its present participle form. It describes the action of being in a state of sleep. Additionally, it can also function as an adjective when used to describe a noun, such as in "sleeping bag."

User Avatar

AnswerBot

2mo ago

What else can I help you with?

Continue Learning about Engineering

What part of a function definition specifies the data type of the value that the function returns?

The function header. The return value is written before the name of the function. This return type must match the type of the value returned in a return statement.


How do you change data types range in c?

You can not change the range of a data type. It is a function of the implementation and is dependent on the word size of the implementation's computer hardware.


How many types of function in C?

Well, it depends on what you mean by the type of a function. There are user defined functions and library functions.


What do you mean by Instantiating the function template?

Function templates are generic functions for which at least one argument must be a generic type. You cannot instantiate a generic type without knowing its actual type, so until you provide an actual type for the function, the function template cannot be instantiated. You provide an actual type simply by calling the function. If an unambiguous template exists, the compiler generates the actual function for you. At that point the function is said to have been instantiated, just as if you'd written the function by hand. If you call the function again with different types, then new instances of the function are instantiated to match those types, just as if you'd manually written the overloads yourself.


Differentitate between overload function and function template?

An overloaded function is a function that has two or more implementations that each operate upon a different type. Function templates allow the compiler to generate overloaded functions on an as required basis for any function where the implementations only differ by type.