Computer Science, asked by himanshukumar7523, 1 year ago

Within for loop do...while loop cannot be used.State whether it is true or false.

Answers

Answered by sachinarora2001
0
... No.. it is false... bcx loop can't do without loop function
Answered by Anonymous
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