What are the important differences between c++ and java?
No Answer is Posted For this Question
Be the First to Post Answer
How many bit combinations are there in a byte?
What is the maximum combined length of command line arguments including the space between adjacent arguments?
What are c++ storage classes?
How come you find out if a linked-list is a cycle or not?
Design a program to input a date from user in the form day/month/year (e.g. 2/6/2000) and report whether it’s a valid date or not. The program should take account of leap years. You will need to know that a leap year is a year that is exactly divisible by 4, except that century years are only leap years if they are divisible by 400.
is throwing exception from a constructor not a good practice ?
Are there any special rules about inlining?
Can we use clrscr in c++?
Inline parameters : What does the compiler do with the parameters of inline function, that can be evaluated in runtime ?
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 == 4 ) y-= 7; else y = 8; Enter a segment of code (without any IF statements) that does exectly the same thing using the switch structure.
In a class only declaration of the function is there but defintion is not there then what is that function?
What is & in c++ function?