void
endl
float
switch
Logical Operator
Conditional Operator
typecast
Ternary
Binary operator
Unary operator
Ternary operator
All of the above
scanf()
getch()
getche()
gets()
1
2
3
4
compare two numeric values
combine two numeric values
compare two boolean values
None of the above
2.5
2.000000
2.500000
double
char
array
Constants
Keywords
Operators
Tokens
float_int, keyword, A1
ANSI, ascii, cpu
valid, variable, name
Either True or False
is less than or is more than
is equal or less or more
Spaces
Digits
Underscores
Letters
int number;
float rate;
int variable_count;
int $main;
They can contain alphanumeric characters as well as special characters
It is not an error to declare a variable to be one of the keywords(like goto, static)
Variable names cannot start with a digit
Variable can be of any length
int my_num = 100,000;
int my_num = 100000;
int my num = 1000;
int $my_num = 10000;
volatile
true
friend
export
int
signed short
unsigned short
long
4 Bytes
8 Bytes
Depends on the system/compiler
Cannot be determined
The basic data type of C
Qualifier
Short is the qualifier and int is the basic data type
All of the mentioned