is there a facility for void datatypes in c programming?
void datatype
Collapse
This topic is closed.
X
X
-
remember.sail@gmail.comTags: None -
vippstar@gmail.com
Re: void datatype
On Dec 4, 3:55 pm, remember.s...@g mail.com wrote:is there a facility for void datatypes in c programming?
void is an incomplete type.
-
Mark Bluemel
Re: void datatype
remember.sail@g mail.com wrote:What do your reference texts tell you about C data types?is there a facility for void datatypes in c programming?
What does the standard tell you about C data types?
What do you want a void data type to do?
Comment
-
James Kuyper
Re: void datatype
remember.sail@g mail.com wrote:C has a type whose name is void; it's "an incomplete type which cannotis there a facility for void datatypes in c programming?
be completed", which is very important and meaningful if you understand
what the C standard says about complete types, and sounds like gibberish
if you don't. I can describe the properties of that type; but if you're
not aware of that data type, I suspect that those properties are not the
same as what you are asking for.
What does "void datatype" mean to you?
Comment
-
santosh
Re: void datatype
remember.sail@g mail.com wrote:
From section 6.2.5 (19) of n1256is there a facility for void datatypes in c programming?
The void type comprises an empty set of values; it is an incomplete type
that cannot be completed.
You use the keyword void in function declarations and definitions to
indicate that it does not take any parameters or that it returns no
value.
Comment
Comment