Which method do we use to append more than one character at a time?
Choose the correct option.
extern int i;
int i;
Pick the right option for following statements.
1) A definition is also a declaration.
2) An identifier can be declared just once.
What is the use of Namespace?
What is the general syntax for accessing the namespace variable?
Variable names beginning with underscore is not encouraged. Why?
Variable name resolving (number of significant characters for uniqueness of variable) depends on
Which of the following is not a valid C variable name?
Which of the following is not a valid variable name declaration?
Which of the following cannot be a variable name in C?
What is the size of an int data type in C++?
Which is correct with respect to size of the datatypes in C/C++?
Result of a logical or relational expression in C is
In C/C++, operation “a = a * b + a” can also be written as:
Which property allows to produce different executables for different platforms in C?
C preprocessor is conceptually the first step during compilation?
What is the output of this C code?
#include <stdio.h>
#define fun(m, n) m * n = 10
int main()
{
printf("In main\n");
}
#include <somefile.h> are _______ files and #include “somefile.h” ________ files.
What is preprocessor?
What is the advantage of #define?
Correct syntax to initialize bit-fields in an structure?
Does puts function adds newline character?