How do we represent a wide character of the form wchar_t?
A widget is to the blueprint for a widget as an object is to a ____.
In a linked list with n nodes, the time taken to insert an element after an element pointed by some pointer is
What will be the output of the following C code?
#include <stdio.h>
int main()
{
m();
return 0;
}
void m()
{
printf("hi");
}
#include<iostream>
using namespace std;
int f(int a=0, int b=0, int c)
{
return (a+b+c);
}
int main()
{
cout<<f(7);
return 0;
}
What is the output of the following C code?
#include <stdio.h>
int main()
{
char prnt[] = "%d\n";
prnt[1] = 'c';
printf(prnt, 67);
return 0;
}
Which of the following statements about Valarray is correct?
What does the following declaration denote?
int **ptr;
The type of linked list in which the node does not contain any pointer or reference to the previous node is called a _____.
What will be the output of the following C++ code?
#include <iostream>
using namespace std;
int main()
{
float num1 = 1.1;
double num2 = 1.1;
if (num1 == num2)
cout << "stanford";
else
cout << "harvard";
return 0;
}