B
Q. What happens if the following program is executed in C and C++?
#include <stdio.h> int main(void) { int new = 5; printf("%d", new); }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. Every variable should be separated by ___ separator.
Q. What is the output of the following code snippet? int x = 10; int *ptr = &x; cout << ptr;
Q. What is the output of the following code snippet? int x = 10; int y = 20; cout << (!x);
Q. Which of the following below can perform conversions between pointers to related classes?
Q. Which of the following is used to terminate the function declaration in C++?
Q. Which of the following data type is supported in C++ but not in C?
Q. How can the member functions in the container be accessed?
Q. Which of the following are available only in the class hierarchy chain?
Discusssion
Login to discuss.