Within for loop do...while loop cannot be used.State whether it is true or false.
Answers
Answered by
0
... No.. it is false... bcx loop can't do without loop function
Answered by
36
Explanation:
This is a function prototype declaring the function getint(). The function takes as pointer to an int as a parameter.
When prototyping a function it is not necessary to specify the parameters' names.
The prototype is missing a return type, which for C then defaults to int. Omiting a return type however is violating the recent C standard, so code doing so could be considered invalid.
An equivalent to
getint(int *);
though would be
int getint(int * pi);
True
Similar questions
English,
8 months ago
Computer Science,
8 months ago
Computer Science,
8 months ago
Computer Science,
1 year ago
Computer Science,
1 year ago
Science,
1 year ago
Biology,
1 year ago
Science,
1 year ago