Question
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("%d\n", rand() % 1000);
return 0;
}
a.
Compile time error
b.
An integer between 0-1000
c.
An integer between 0-999 including 0 and 999
d.
An integer between 0-1000 including 1000
Posted under C Programming
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. What is the output of this C code?
Similar Questions
Discover Related MCQs
Q. Which of these is a correct way to generate numbers between 0 to 1(inclusive) randomly?
View solution
Q. The number of digits present after decimal in float is________.
View solution
Q. Which among the following is never possible as an output for float?
View solution
Q. In a 32-bit compiler, which 2 types have same size?
View solution
Q. What is the size of float in a 32-bit compiler?
View solution
Q. Loss in precision occurs for typecasting from____________.
View solution
Q. For union
union temp
{
char a;
int b;
float c;
};
The size is decided by:
View solution
Q. %f access specifier is used for
View solution
Q. Select the odd one out with respect to type?
View solution
Q. Which of the following % operation is invalid?
View solution
Q. Which data type is suitable for storing a number like?
10.0000000001
View solution
Q. Modulus for float could be achieved by?
View solution
Q. Predict the data type of the following mathematical operation?
2 * 9 + 3 / 2 . 0
View solution
Q. %lf is used to display
View solution
Q. What is the sizeof(char) in a 32-bit C compiler?
View solution
Q. Size of an array can be evaluated by:
(Assuming array declaration int a[10];)
View solution
Q. Which of the following is not an operator in C?
View solution
Q. Which among the following has the highest precedence?
View solution
Q. What type of value does sizeof return?
View solution
Q. The sizeof(void) in a 32-bit C is_____
View solution
Suggested Topics
Are you eager to expand your knowledge beyond C Programming? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!