Define type casting in C++.
No Answer is Posted For this Question
Be the First to Post Answer
What is wrong with this statement? std::auto_ptr ptr(new char[10]);
Write a C++ Program to Check Whether a character is Vowel or Consonant.
C++ Public access specifier instead of Private – What is bad ?
What is a virtual function in C++?
Difference between Call by pointer and by reference.
Tell us the size of a float variable.
How will you execute a stack using a priority queue? (Push and pop should be in O (1)).
Write a syntax and purpose of switch statement.
What Is A Conversion Constructor C++ ?
Write a program to read two numbers from the keyboard and display the larger value on the screen
Discuss about iteration statements in C++ .
Identify the errors in the following program. #include <iostream> using namespace std; void main() { int i=5; while(i) { switch(i) { default: case 4: case 5: break; case 1: continue; case 2: case 3: break; } i-; } }