int main( )
{
int x = 7, y = 3, z =5;
z -= -x-- - --y;
cout<<z;
return 0;
}
What will be the output of the following C++ code?
What will be the output of the following C++ code?
A connected planar graph having 6 vertices, 7 edges contains _____________ regions.
What is the largest numerical value that can be represented by a char? (Give your answer as a decimal integer.)
Is the following C code snippet legal?
typedef struct srt type;
struct srt{
int num;
type *var;
};
In the context of C data types, which of the following is correct?
Which of the following statements about function overloading is false?
Which of the following statements about the subscript operator is correct?
What happens if the base and derived class contains definition of a function with same prototype?