Identify the correct way of variable declearation
Keyword to define any constant variable
The declaration "unsigned u" indicates u is a/an
If s and b are integers then purpose of the following program fragment...
Which of this is invalid variable name
Scanf("%d", x);
Why this statement will give error ?
Which one is allowed assignment in 'C'
Which is an incorrect variable name?
If 'a' is an integer variable, then a=5/2 will return a value
Which of the follwing symbol is format specifier?
Which of the following is the valid variable name?
How many keywords are there in C Language?
The Opertor which compares the two values is
Which of this is valid variable name
Identify the correct sequence of steps to run a program
Which of this reserved keyword in C language ?
Int main() { printf("%d", 0&&4);
Which language does not need any translator?
Operator & is used for
Int a; a=15^13; printf("%d", a);
An expression contains relational, assignment and arithmetic...
Which constant can be expressed both in fractional and exponential...
Identify the valid variable name
The format identifier ‘%i’ is also used for _____ data type.
In an assignment statement a=b; which of the following statement is...
#define ISEQUAL(X, Y) X==Y void main(){ int X, Y; printf("%d",...
An external variable
Sizeof(long int)
output will be … ?
Which of the following is not a premitive data type in 'C' language?
Which operators are used to compare the values of operands to produce...
An operator used to check a condition and select a value depending on...
Which of the follwing is a ternary operator
The result of a relational operator is always
Int x=23, y; y= x--; printf("%d%d", x, y);
Int a; a=5&&4; printf("%d", a);
The words if, else, auto, float etc. have predefined meaning and users...
? and : are called
Algorithm should be
Choose the correct option among which will be valid after this...
In the passage of text, individual words and punctuation marks are...
Int main() {char a = 'a'; printf("%d", a); return 0;}
Which of the following cannot be used as identifiers independely ?
The size of unsigned integer ?
Choose the correct statements
A name start with letters or underscore is called
>1);" type="button" name="46" value="46" >
>1);" >
Int main() { printf("%d", 3>>1);
Associativity of = operator is.
Int main() { printf("%d", sizeof(long long double)); }
Int a; a=10
Which of this is valid statement
The minimum number of temporary variables needed to swap the contents...
A sequence of instruction ,in a computer language , to get the desired...
C language programs are converted into machine language by
For a 2 bit integer int main() {int a = 40000; printf("%d", a); return...
Int a=10, b=4;c;
a=a/b;
printf(" %d", a);
output will be ….
Size of the interger that is supported by gcc compiler is:
Int main() {char a = 125'; a = a + 10; printf("%d", a); return 0;}
Int a=10;
printf(" %d", a+5);
Int main() { printf("%d", 3
Which of the following is invalid C constant?
Int a; a=10>>1; printf("%d", a);
Int main() { printf("%d", 3|4);
Which of the following is not a valid declaration in C?
Name of compiler to run c program on linux opetating system
Int a; a=5||0; printf("%d", a);
Int main() { printf("%d", sizeof(long long int)); }
Int main() { int a =1; printf("%d%d%d", a, a++, ++a);
Int main() { int b =1; printf("%d%d%d", b++, b, b++);
Int a; a=5&4; printf("%d", a);
#define ISEQUAL(X, Y) X==Y void main(){ int X, Y; printf("%d",...