C programming language by itself provides
Answer: D
No answer description available for this question.
Enter details here
Choose the correct statements
Answer: D
No answer description available for this question.
Enter details here
The statement
# include < math.h>
is written at the top of a program to indicate
Answer: C
No answer description available for this question.
Enter details here
By default, any real number in 'C' is treated as
Answer: B
No answer description available for this question.
Enter details here
Constants in C can be divided into categories ?
Answer: C
No answer description available for this question.
Enter details here
Which of the following comments about wide characters is/are true ?
Answer: D
No answer description available for this question.
Enter details here
What is the output of this C code?
int main()
{
int var = 010;
printf("%d", var);
}
Answer: B
010 is octal representation of 8.
Enter details here
To print out a and b given below, which printf() statement would you use?
float a = 3.14;
double b = 3.14;
Answer: A
No answer description available for this question.
Enter details here
_______not a primary constant.
Answer: D
No answer description available for this question.
Enter details here
The library function sqrt operates on a double precision argument. If, i is an integer variable, then which of the following calls would correctly compute sqrt(i)?
Answer: A
No answer description available for this question.
Enter details here