answersLogoWhite

0

It means that the function doesn't have parameters.

example:

int foo (void); -- it is a prototype for function 'foo', having no parameters

int bar (); -- it is not a prototype as it says nothing about the parameters

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

How do you write c file arguments?

Using parameters argc and argv, and library functions fopen, fprintf, fclose


What are the advantages of using reference parameters?

Reference parameters allow functions to modify the arguments passed to them, enabling the function to operate directly on the original data rather than a copy. This can lead to improved performance, especially with large data structures, as it avoids the overhead of copying. Additionally, they can facilitate multiple return values from a function, as changes to the reference parameters persist outside the function scope. Finally, using reference parameters can enhance code clarity by making it explicit which variables are intended to be modified.


How many parameters are possible using the IF function in Excel?

The IF function has 3 parameters. The condition, the true part and the false part.


What is a sentence using the word insufficient?

Your description of the project's parameters are insufficient.


What is the effect of federal legislation governing unsolicited business communications?

strict parameters for direct-marketing campaigns using unsolicited faxes, e-mail, and telephone calls. The Junk Fax Prevention Act, the Can Spam Act, and the Federal Trade Commission's Do Not Call Lists


How can one learn from lists?

Many people learn by using lists. This is because lists display clear and concise information that is straight to the point. Lists do not include other stuff that is no important.


What is the significance of an electric streetcar?

The significance is that it is not using fossil fuels directly.


How do you generate random numbers in PHP?

Use the function "rand()" or "mt_rand()". Both functions will generate a random number (as a return value, so be sure to make it point to a variable - see examples). However, "rand()" is slower and uses a default PHP randomizing system. mt_rand() is four times as fast, and uses the Mersenne Twister randomizing format - which is much more random. Both functions have two optional parameters - a minimum integer and a maximum integer, respectively. By filling in these parameters, you will get a random number between the values you give (so, giving one and five will give you a random number that is no less than one, and no greater than five). These, again, are optional - and if left blank, the tiniest integer possible is no less than 0, and the largest integer possible is generated by the PHP function "getrandmax()" / "mt_getrandmax()" automatically. Examples, of which all are acceptable: ---- /* Examples using no parameters */ $randomNumber = rand(); $randomNumber = mt_rand(); /* Examples using parameters */ $randomNumber = rand(1, 5); $randomNumber = mt_rand(6, 10); ---- If your PHP build is version 4.2 or under, you will need to seed the random number generator with a value to base off of. "srand()" and "mt_srand()" (to be used with rand() and mt_rand() functions, respectively) can be used in this case. They both only have one optional parameter, which is any seed value - any number. If omitted, a random seed will be generated. More acceptable examples: ---- // Example using no parameters srand(); $randomNumber = rand(); // Example using the seed parameter srand(12345); $randomNumber = rand(); // Example using the "mt" random format functions (without parameters) mt_Rand(); $randomNumber = mt_rand(); // Example using the "mt" random format (with parameters) mt_rand(12345); $randomNumber = mt_rand(); ----


How can we represent polynomials using linked lists?

30


How do you write a program in C using the fprint and fscan functions?

By using those two functions in your code.


What is the significance of the van't Hoff plot equation in determining the thermodynamic parameters of a chemical reaction?

The van't Hoff plot equation is important in determining the thermodynamic parameters of a chemical reaction because it allows us to calculate the enthalpy and entropy changes of the reaction using temperature-dependent data. This equation helps us understand the energy changes and spontaneity of a reaction, providing valuable insights into its feasibility and direction.


Describe three general methods for passing parameters to the operating system?

1) Pass parameters using registers(directly). 2) Store the parameters in a table in memory and the table address is passed in a register to the OS. 3) Push(store) the parameters onto a stack(by the program) and "pop" off by the Operating System.