answersLogoWhite

0

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.

User Avatar

Wiki User

10y ago

What else can I help you with?

Related Questions

How does the use of the 'void' keyword differ in C plus plus vs. C?

It doesn't. Void has the same meaning in both.


Difference between void and devoid in c plus plus?

There is no such thing as devoid in C++.


What use of void data type in c plus plus?

doesn't return the value.


C plus plus Builder 5 Queries and Database Grids?

thanks


Which Program that will run in C but not in C plus plus?

void main() { int *x = malloc(sizeof(int) * 10); }


Difference of c plus plus and fox pro?

C++ is a generic, general purpose, object-oriented, structured programming language used to produce native machine code programs. FoxPro is a procedural language and Database Management System (DBMS).


Is there anyway to convert filemaker databases into c plus plus or Visual Basic files?

Not that I'm aware of. But since Filemaker is a database, you can use C++ to access the database just as you would use C++ to create SQL queries on an SQL database. Think of Filemaker as being the backend to your C++ program.


What is the purpose of C plus plus?

Computer programming.


What is the relationship between database and c plus plus?

There is none. While you can access databases from C++, the two concepts are fundamentally different.


C plus plus program that will count?

#include int main (void) { puts ("1 2 3"); }


How do you use call by reference in c plus plus?

Call by reference means calling a function using a reference to a variable or a pointer. You call a function by passing refrences to a variable. For eg: void x(int &a) { a=2; } void main() { int s=3; x(s); } OR void a(int &c) { c=5;}void main(){ int *p; *p=2a(*p);}


What is CPU usage small programm c plus plus?

Example: int main (void) { LOOP: goto LOOP; }