C
Programming and Technical
Q. What is use of void data type?
A. Void is an empty data type normally used as a return type in C/C++, C#, Java functions/methods to declare that no value will be return by the function. The another used of void is to declare the pointer in C/C++ where It is not sure what data type is addressed by the pointer.
Read Solution (Total 1)
-
- void data type hold any type of data
- 9 years agoHelpfull: Yes(0) No(0)
C Other Question