what is the use of void main() in C++ language?
No Answer is Posted For this Question
Be the First to Post Answer
You have to take 2 arrays of length 10. Input the values of array 1 from the user. Then copy the values of array 1 to array 2 in ascending order For example if user enters 9, 5, 6, 8, 1, 0, 2, 7, 4, 3 then copy the smallest element i.e. 0 first followed by 1, 2 and so
Explain object slicing in c++?
What is the difference between ++ count and count ++?
Which is the best c++ compiler?
How do you traverse a btree in backward in-order?
What are features of c++?
Why did you leave your last job?
Can you declare an array without a size in c++?
Write a function which takes a character array as input and reverses it in place.
2 Answers Lehman Brothers, Vision Infotech,
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?
Why do we use constructor?
What is the equivalent of Pascal's Real a) unsigned int b) float c) char