What is the output of this program?
1. #include2. using namespace std; 3. int main() 4. { 5. void a = 10, b = 10; 6. int c; 7. c = a + b; 8. cout << c; 9. return 0; }
Choose the incorrect option
What does the following statement mean?
void a;
____ have the return type void?
Which of the following will not return a value?