C++ Pointers & Functions Question:
Download Questions PDF

Where does the execution of the program starts?
a) user-defined function
b) main function
c) void function
d) none of the mentioned

C++ Pointers & Functions Interview Question
C++ Pointers & Functions Interview Question

Answer:

b) main function

Download C++ Pointers & Functions Interview Questions And Answers PDF

Previous QuestionNext Question
What are mandatory parts in function declaration?
a) return type,function name
b) return type,function name,parameters
c) both a and b
d) none of the mentioned
In which part of the for loop termination condition is checked? for(i;ii;iii) {iv}