Thread: void
View Single Post
  #3 (permalink)  
Old Oct 3rd, 2007, 09:06
c010depunkk's Avatar
c010depunkk c010depunkk is offline
SuperMember

SuperMember
Join Date: Apr 2007
Location: Willich, Germany
Age: 20
Posts: 593
Blog Entries: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to c010depunkk
Re: void

The void keyword means that the identifier it's being applied to has no type (int, bool...)

When you have a void function then it means the function returns no value (has no type).
A void pointer points to a value with no type.
Reply With Quote