What is mandatory for designing a new container in programming?
What does the cerr represent?
Is the following code legal?
int *ptr;
ptr = (int *) 0*400;
Which of the following is an acceptable initialization of a variable?
What is the expected output of the following C program?
main()
{
char ch='A';
int rel=ch;
printf("%d",rel);
}
In which order are global destructors executed after the main function is finished?
When can a void pointer be dereferenced?
Which of the following statements are true about recursion ?
What is the output of the following code?
#include <stdio.h>
typedef struct student
{
char *a;
} stu;
int main()
{
struct student s;
s.a = "hey";
printf("%s", s.a);
return 0;
}
What are the actual parameters in C++?