answersLogoWhite

0

What is meant by void abcint?

Updated: 12/17/2022
User Avatar

Wiki User

8y ago

Best Answer

void abc(int); is a function declaration. The declared function has no return value, is named abc and accepts one integer argument by value.

User Avatar

Wiki User

8y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is meant by void abcint?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you make a void in Doodle God?

You get void when you reach 100 elements.


What is meant by void?

void means that a function returns nothing. Technically, "void main()" is against the POSIX specification as the truly correct standard is for main to return an int where 0 is a normal exit and anything else is an abnormal exit.


How do you make darkness on doodle god 2?

If you meant to say Pocket God, the iPod app, all you do is drag the sun below the horizon.


What is meant when a job is annulled?

The job no longer exists. Annul means to cancel, to declare void or invalid.


When installing the banks exhaust system will I need to weld it?

No this is untrue. There are plenty that you can by that are meant to be clamped together. Also make sure you follow the instructions because welding a kit that was meant to be clamped together will void the warranty.


What is meant by void in c plus plus?

void is used by functions that do not return a value. For example: // This function returns an integer, which you can use in other functions int addTwoNumbers(int a, int b) { return(a + b); } // This function does not return a value, so we declare it as a void void printSum(int a, int b) { cout << a << " + " << b << " = " << addTwoNumbers(a, b) << endl; // Note that attempting to return a value here will cause an error. }


Purpose of void database in c plus plus?

There is no such term in C++. You probably meant void datatype. Void simply means "no type" and is primarily used as a place-holder for functions that do not return a value, since all functions must return something even when they return nothing at all. Not to be confused with void* which is a pointer to any type which, if non-null, must be cast to the correct type before being dereferenced.


How did the compromise of 1850 void the Missouri Compromise in the territorie acquired from Mexcio?

It meant that the territories South of the line could no longer be admitted to the USA as slave-states.


What is a void?

a void is a vacuum


How do you make sun in Doodle God?

Plasma+Void=Sun


C progamme for conversion of Celsius to Fahrenheit using array?

main void void void (void) { float temp1 [13]= {1,4,2,3,4,5,7,88,9,4,3,23,12};


How do you Write a function prototype for a function named printStars that accepts no arguments and returns no data?

void printStarts (void);