The program's machine instructions are stored in the _______ memory segment.
Which of the following operators in C have the highest precedence when evaluating expressions?
What programming language has the ability to create new data types?
The postfix form of the expression (H+I)*(J*K-L)*M/N is?
Which of the following operators cannot be used to overload when the function is declared as a friend function?
What is the output of the following C program?
int main()
{
char s1[8] = "morning";
char s2[8] = "evening";
printf("%c %c", s1[4], s2[4]);
}
What is the output of the following C program?
int main()
{
static int i = 3;
if (i)
{
i = i - 1;
main();
printf("%d ", i);
}
}
What is the output of this C code?
int main()
{
int a = 4, n, i, result = 0;
scanf("%d", n);
for (i = 0;i < n; i++)
result += a;
}
Which C++ code will print: "Welcome to Abekus"?
Assuming the int size is 4 bytes, what is going to happen when we compile and run the following program?
#include “stdio.h”
int main()
{
printf(“Abekus”);
main();
return 0;
}