Which is the only function all C programs must contain?
Which is the only function all C programs must contain?
What will be printed after execution of the following program code?
main()
{
printf("\\nab");
printf("\\bsi");
printf("\\rha");
}
What will be printed after execution of the following program code?
main()
{
printf("\\nab");
printf("\\bsi");
printf("\\rha");
}
Which of the following is not a correct variable type?
Which of the following is not a correct variable type?
Who is father of C Language?
Who is father of C Language?
What number would be shown on the screen after the following statements of C are executed?
char ch;
int i;
ch = 'G';
i = ch-'A';
printf("%d", i);
What number would be shown on the screen after the following statements of C are executed?
char ch;
int i;
ch = 'G';
i = ch-'A';
printf("%d", i);
If ASCII value of 'x' is 120, then what is the value of the H, if
H = ('x' – 'w' ) / 3;
If ASCII value of 'x' is 120, then what is the value of the H, if
H = ('x' – 'w' ) / 3;
For 16-bit compiler allowable range for integer constants is ________?
For 16-bit compiler allowable range for integer constants is ________?
Which of following is not a valid name for a C variable?
Which of following is not a valid name for a C variable?
C was primarily developed as
C was primarily developed as
short testarray[4][3] = { {1}, {2,3}, {4,5,6}};
printf("%d", sizeof(testarray));
Assuming a short is two bytes long, what will be printed by the above code?
short testarray[4][3] = { {1}, {2,3}, {4,5,6}};
printf("%d", sizeof(testarray));
Assuming a short is two bytes long, what will be printed by the above code?
If integer needs two bytes of storage, then maximum value of an unsigned integer is
If integer needs two bytes of storage, then maximum value of an unsigned integer is
A C variable cannot start with
A C variable cannot start with
What is the difference between a declaration and a definition of a variable?
What is the difference between a declaration and a definition of a variable?
Find the output of the following program.
void main()
{
int i=065, j=65;
printf("%d %d", i, j);
}
Find the output of the following program.
void main()
{
int i=065, j=65;
printf("%d %d", i, j);
}
Which one of the following is not a valid identifier?
Which one of the following is not a valid identifier?
C programs are converted into machine language with the help of
C programs are converted into machine language with the help of
What is the correct value to return to the operating system upon the successful completion of a program?
What is the correct value to return to the operating system upon the successful completion of a program?
"My salary was increased by 15%"
Select the statement, which will EXACTLY reproduce the line of text above.
"My salary was increased by 15%"
Select the statement, which will EXACTLY reproduce the line of text above.
Standard ANSI C recognizes ______ number of keywords?
Standard ANSI C recognizes ______ number of keywords?
Find the output of the following program. void main() { int i=01289; printf("%d", i); }
Find the output of the following program. void main() { int i=01289; printf("%d", i); }
C Language developed at _________?
C Language developed at _________?
Which one of the following is not a reserved keyword for C?
Which one of the following is not a reserved keyword for C?