C is the successor of____programming language.
Which type is best suited to represent the logical values?
Which of the following is a valid floating-point literal?
#if or #elif can be used to evaluate
The following code is written to print the sixth element of the array x[]. What is the output and identify the error?
What is the output of the following C code?
#include
int main()
{
char a[2][2][3] = {'a', 'b', 'e', 'k', 'u', 's'};
printf("%s ", **a);
return 0;
}
What will be the output of the following C code?
#include <stdio.h>
int main()
{
int a = 1, 2, 3;
printf("%d", a);
return 0;
}
Which of the following is correct in C++?
What will be the output of the following C++ code?
Choose the incorrect option.