How many keywords and operators are used in the C programming language?
The correct order of evaluation for the expression “z = x + y * z / 4 % 2 – 1”
Which of the following statements regarding inline functions is correct?
Which of the following is the correct way to derive a class x from a class y?
#include <stdio.h>
int main()
{
int arr[5];
// Assume that base address of arr is 2000 and size of integer
// is 32 bit
arr++;
printf("%u", arr);
return 0;
}
What is the output of the program?
int main()
{
char text[40];
gets(text);
puts(text);
}
Which of the following is the equivalent statement for the functor call x = f(arg1, arg2); where f is a functor and arg1 and arg2 are the arguments required by the functor?
Which of the following statement is correct?
The significance of the "*" symbol in C programming is...