What is the output of the given C program?
Which operator is used to connect the structure name to its member name?
Which of the following is used for comments in C++?
How to stop Name Mangling in C++?
What is the output of the following C code?
int main()
{
int x = 10;
printf("x=%d", x);
return 0;
}
In which of the following relationship objects of related classes can occur independently?
What is the output of the following C program?
#include<stdio.h>
int main()
{
float x=0.1;
if (x==0.1)
printf("Equal");
else
printf("Not equal");
}
What will be the output?
#include "stdio.h"
int main()
{
char *_ptr = malloc(100);
if(_ptr!=NULL)
free(_ptr);
free(_ptr);
return 0;
}
Which of the following statements about virtual functions is correct?