How many types of linkages are there in C++?
Which parameter is legal for a non-type template?
Which operator is used to produce a certain number in a specific range?
To ensure that every object in the array receives a destructor call, always delete memory allocated as an array with operator __________ .
What is the use of the function call operator ()?
What is the purpose of the includes function in C++?
In a two-dimensional array, X(9,7), with each element occupying 4 bytes of memory, and the address of the first element X(1,1) is 3000, find the address of X(8,5).
What will be the output of the following C code?
#include<stdio.h>
int main()
{
float x=0.1;
printf("%d",x);
printf("%f",x);
}
#include
Which of the following is correct about dynamic polymorphism?