Which is not a arithmatic operator ?
Which of the following escape sequences represents a carriage return?
#include<stdio.h>
int main()
{
int a;
a = 5; // Assign the value 5 to 'a'
printf("%d\n", a);
}
Which header file should be included if a function has to be defined to accept a variable number of arguments?
When can a void pointer be dereferenced?
The OOP concept in C++ that involves exposing only necessary information to users or clients is known as
Consider the following code:
short array[4][3] = {{1}, {2, 3}, {4, 5, 6}};
What is the output of the following statement?
printf("%d", sizeof(array));
Which of the following function prototype is perfectly acceptable?
When is the pre-processing stage performed in the compilation process?
In the context of "break" and "continue" statements in C, which of the following statements is correct?