What will be the output of the program
given below?
iinclude <stdio.h>
void show(void);
int main()
{
show();
print: ("Being ");
return e;
void show()
{
print("Human ");
ahnafabid:
ok
Answers
Answered by
1
Answer:
Being Human
I think you got it
through 5 using the do-while loop:
#include
int main()
{
int c = 0;
(1)_
{
printf ("%d", c);
_(2)__++;
}
while (c <= 5) _(3)_
return 0;
a (1) while (2) c (3);
b. (1) do (2) c (3);
c.(1) do (2) while (3) C;
d.(1) do (2) while (3);
Similar questions
English,
1 month ago
CBSE BOARD XII,
1 month ago
Hindi,
1 month ago
Science,
3 months ago
Math,
3 months ago