Ask Experts Questions for FREE Help!
 

Free Answers in 3 Easy Steps

Register Now
3 Steps
 


Ask QuestionsprogressAnswer QuestionsprogressBuild ReputationprogressBecome an Expert
 
At Ask Me Help Desk you can ask questions in any topic and have them answered for free by our experts. To ask questions or participate in answering them you must register for a free account. By registering you will be able to:
  • Get free answers from experts in any of our 300+ topics.
  • Accept money for answers that you provide.
  • Communicate privately with other members (PM).
  • See fewer ads.
  View Answers    Answer this question    Ask a question  
 

priyanka kothar
Mar 10, 2009, 03:19 AM
Why and where should 'void' is used in a c++ program

Perito
Mar 10, 2009, 04:33 AM
"void" is used to indicate that a function will not return a value. It is also used for a variable when a type is not specified. Here's a Microsoft discussion:

void (C++) (http://msdn.microsoft.com/en-us/library/fxky5d0w(VS.80).aspx)

manish11
Jul 19, 2009, 03:13 AM
Void is used when a particular function does not return any value..it is used to indicate that function is not returning any value..:)