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