What is the maximum number of dimensions an array in C can have?
The average depth of a binary tree is given as?
What is the output of the following C program?
What will happen if a string is empty?
Which of the following data structures uses structures?
Which of the following concepts make extensive use of arrays?
What is the output of the following C code?
int main(void){
int x;
x=8++;
printf("%d",x);
return 0;
}
What is the output of the following C program?
#include<stdio.h>
int main() {
int x[] = {100, 200, 300};
printf("%d", *x + 1);
return 0;
}
What is the output of the following C program?
#include<stdio.h>
#define int char
void main()
{
int i=65;
printf("sizeof(i)=%d", sizeof(i));
}
What is the order of constructor calls when an object of the derived class B is created, provided class B is derived from class A?