Which of the following is a built-in function?
What is the other name for a derived class?
Which is used to keep the call by reference value as intact?
Which of the following gives the name of the program if the second parameter to the main function is char **argv?
What is the output of the following code?
main()
{
int i;
printf("%d", scanf("%d", &i)); // value 99 is given as input here
}
What is the output of the following C program?
int main()
{
int a[4] = {3, 4, 5, 6};
printf("%d %d %d", 3[a], a[3], *a);
}
When an element is inserted into a vector, subsequent elements are moved in terms of what?
What happens when the try block is placed far away from the catch block?
What is the meaning of a sequence point in a computer program?
OnSite
2 Openings
FullTime
Posted 7 days ago