what is the use of void main() in C++ language?
No Answer is Posted For this Question
Be the First to Post Answer
how is returning structurs from functions?Show an eg?
Is c++ platform dependent?
Describe new operator and delete operator?
Floating point representation and output seems to be compiler dependent?
Implement strcmp
What's the order in which the local objects are destructed?
What is else syntax in c++?
Is c++ the best programming language?
Given a simple program designed to take inputs of integers from 1-1000 and to output the factorial value of that number, how would you test this program? You do not have access to the code. Please be as specific as possible.
Will the inline function be compiled as the inline function always? Justify.
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?
What is the Difference between "C structure" and "C++ structure"?